Skip to content

Commit

Permalink
readme doctest only on 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jul 24, 2020
1 parent 16fa425 commit 9250348
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-package.yml
Expand Up @@ -33,12 +33,16 @@ jobs:
run: |
flake8 autopep8.py
pycodestyle autopep8.py
- name: doctest for readme
with:
python-version: [3.7, 3.8, pypy3]
run: |
python -m doctest -v README.rst
- name: Test with pytest
run: |
pytest
python test/acid.py -aaa --experimental test/example.py
python test/acid.py -aaa --experimental test/example_with_reduce.py
python -m doctest -v README.rst
python test/acid.py --pycodestyle= -aaa --compare-bytecode --experimental test/example.py
python test/acid.py --pycodestyle= --aggressive --line-range 550 610 test/inspect_example.py
python test/acid.py --pycodestyle= --line-range 289 925 test/vectors_example.py
Expand Down

0 comments on commit 9250348

Please sign in to comment.