Skip to content

Commit

Permalink
chore: fix tox configuration (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
hadrien authored Apr 6, 2021
1 parent fc8a6ef commit 78308f4
Show file tree
Hide file tree
Showing 7 changed files with 597 additions and 427 deletions.
19 changes: 13 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ orbs:
python: dialogue/[email protected]
utils: dialogue/[email protected]


workflows:
ci:
jobs:
Expand Down Expand Up @@ -62,11 +61,19 @@ jobs:
steps:
- base/setup
- python/setup
- python/install_deps
- run:
name: "run tox using sqlalchemy <<parameters.sqlalchemy_version>>.*"
command: |
poetry run tox -e sqlalchemy<<parameters.sqlalchemy_version>>
- utils/with_cache:
key: 'sqlalchemy<<parameters.sqlalchemy_version>>-{{ checksum "pyproject.toml" }}-{{ checksum "poetry.lock" }}'
namespace: tox
path: ~/project/.tox
steps:
- run:
name: "install tox"
command: |
poetry run pip install -U tox
- run:
name: "run tox using sqlalchemy <<parameters.sqlalchemy_version>>.*"
command: |
poetry run tox -e sqlalchemy<<parameters.sqlalchemy_version>>
- utils/send_coverage_to_codecov:
codecov_flag: sqlalchemy<<parameters.sqlalchemy_version>>

Expand Down
Loading

0 comments on commit 78308f4

Please sign in to comment.