We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 63c60af + 6eb7d5d commit 93ff5d7Copy full SHA for 93ff5d7
.github/workflows/build.yml
@@ -18,7 +18,11 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install .[test]
22
- - name: Test with pytest
+ pip install tox
+ pip install -r requirements-lint.txt
23
+ - name: Test with pytest via tox
24
- pytest
25
+ tox -e gh
26
+ - name: Code Format Check with Black
27
+ run: |
28
+ black --check --verbose .
tox.ini
@@ -15,6 +15,11 @@ commands =
15
16
recreate = True
17
+[testenv:gh]
+passenv =
+ CI
+ PYTHONPATH
+
[testenv:travis]
passenv =
CI
0 commit comments