Skip to content

Commit

Permalink
Matrix test across Python versions for unit tests (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldiamant authored Apr 28, 2022
1 parent 6622d81 commit d79c1c1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ workflows:
version: 2
test:
jobs:
- unit-test
- unit-test:
matrix:
parameters:
python-version: ["3.8", "3.9", "3.10"]
- integration-test
- docset

jobs:
unit-test:
parameters:
python-version:
type: string
docker:
- image: python:3.8
- image: python:<< parameters.python-version >>
steps:
- checkout
- run: pip install -r requirements.txt
Expand Down

0 comments on commit d79c1c1

Please sign in to comment.