Mercurial > p > roundup > code
changeset 7828:3c514819c1b7
test: add hypothesis
Allow python3 tests to use the new hypothesis testing.
I am targeting python 3 for additional testing of existing code.
Don't spend the additional time on Travis CI (where python2 is tested)
where I have to ask for more time on the platform.
New code should be testable on both platforms. If we have a need to
test with hypothesis on python 2 for new code, we can revisit this.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 24 Mar 2024 14:28:14 -0400 |
| parents | 604da0650797 |
| children | 7b33365ccb2a |
| files | .github/workflows/ci-test.yml |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Sun Mar 24 13:49:52 2024 -0400 +++ b/.github/workflows/ci-test.yml Sun Mar 24 14:28:14 2024 -0400 @@ -119,7 +119,7 @@ # note pytest-env is not needed for redis password as there is # no password on CI's redis. - name: Install pytest and other packages needed for running tests - run: pip install flake8 mock pytest pytest-cov requests sphinx-tabs + run: pip install flake8 hypothesis mock pytest pytest-cov requests sphinx-tabs - name: run flake8 - abort for syntax error, otherwise warn only run: |
