Skip to content

Commit 4952baf

Browse files
committed
ci: install tox
1 parent 1b60447 commit 4952baf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
- checkout
2323
- run: excode README.md test/zzz_readme_test.py --filter python,test
2424
# The actual test
25-
- run: tox
25+
- run: |
26+
pip install tox
27+
tox
2628
# submit to codecov
2729
- run: bash <(curl -s https://codecov.io/bash)
2830

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
pip install excode
3737
excode README.md test/zzz_readme_test.py --filter python,test
3838
- name: Test with tox
39-
run: tox
39+
run: |
40+
pip install tox
41+
tox
4042
# - name: Submit to codecov
4143
# run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)