We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b60447 commit 4952bafCopy full SHA for 4952baf
.circleci/config.yml
@@ -22,7 +22,9 @@ jobs:
22
- checkout
23
- run: excode README.md test/zzz_readme_test.py --filter python,test
24
# The actual test
25
- - run: tox
+ - run: |
26
+ pip install tox
27
+ tox
28
# submit to codecov
29
- run: bash <(curl -s https://codecov.io/bash)
30
.github/workflows/ci.yml
@@ -36,6 +36,8 @@ jobs:
36
pip install excode
37
excode README.md test/zzz_readme_test.py --filter python,test
38
- name: Test with tox
39
- run: tox
+ run: |
40
41
42
# - name: Submit to codecov
43
# run: bash <(curl -s https://codecov.io/bash)
0 commit comments