We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d237c commit eda23a8Copy full SHA for eda23a8
1 file changed
.github/workflows/tests.yml
@@ -15,7 +15,8 @@ jobs:
15
runs-on: ubuntu-latest
16
strategy:
17
matrix:
18
- python: [3.6, 3.7, 3.8, 3.9]
+ python: [3.6, 3.7, 3.8, 3.9]
19
+ type: [unit, functional]
20
21
# Steps represent a sequence of tasks that will be executed as part of the job
22
steps:
@@ -35,8 +36,5 @@ jobs:
35
36
- name: Install requirements
37
run: pip install -r requirements.txt
38
- - name: Run unit tests
39
- run: python -m unittest discover -s tests/unit -v
40
-
41
- - name: Run functional tests
42
- run: python -m unittest discover -s tests/functional -v
+ - name: Run ${{ matrix.type }} tests
+ run: python -m unittest discover -s tests/${{ matrix.type }} -v
0 commit comments