Skip to content

Commit

Permalink
Circle conf
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Mar 15, 2024
1 parent 46c888a commit 47e0f70
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,19 @@ jobs:
- python/install-packages:
pkg-manager: poetry
- run:
command: |
poetry install
sudo apt-get update
sudo apt-get install -y libfuse-dev
name: Install dependencies
- run:
command: |
poetry run pytest
name: Run tests
name: Install python dependencies
command: poetry install
pytest:
executor: python
steps:
- checkout
- python/install-packages:
pkg-manager: poetry
- run:
name: Install apt dependencies
command: |
sudo apt-get update
sudo apt-get install -y libfuse-dev
- run:
command: |
poetry run pytest
Expand All @@ -51,5 +49,6 @@ jobs:
workflows:
main:
jobs:
- pytest
- build
- pytest: {requires: [build]}
- linting

0 comments on commit 47e0f70

Please sign in to comment.