From 96fa049fb6595fa8d6ce7b7a7af6647bf8422c84 Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 20 Feb 2024 22:28:46 -0700 Subject: [PATCH] ok --- .circleci/config.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 364fd13..9ad4647 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ executors: nodejs: docker: - image: node:18 - resource_class: large + resource_class: medium jobs: @@ -23,11 +23,13 @@ jobs: steps: - checkout: path: ~/scwrypts - - run: | - : \ - && pip install . .[test] \ - && pytest \ - ; + - run: + name: pytest + command: | + : \ + && pip install . .[test] \ + && pytest \ + ; python-publish: executor: python