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