fix(pytest)

closes #4673
This commit is contained in:
Jacob Heider 2024-01-04 20:27:30 -05:00 committed by Jacob Heider
parent c0011da069
commit 712ee1c4a7

View file

@ -1,5 +1,5 @@
distributable:
url: https://github.com/pytest-dev/pytest/archive/refs/tags/v{{ version }}.tar.gz
url: https://github.com/pytest-dev/pytest/archive/refs/tags/{{ version.tag }}.tar.gz
strip-components: 1
versions:
@ -7,17 +7,23 @@ versions:
strip: /^v/
dependencies:
python.org: '>=3.7<3.12'
pkgx.sh: ^1
build:
python-venv.sh {{prefix}}/bin/pytest
dependencies:
python.org: '>=3.7<3.12'
git-scm.org: ^2
script:
- bkpyvenv stage {{prefix}} {{version}}
- ${{prefix}}/venv/bin/pip install .
- bkpyvenv seal {{prefix}} pytest
provides:
- bin/pytest
test:
script: |
pytest --version
script:
- pytest --version
# Must return true to pass test; we check for the failure response afterwards explicitly.
pytest >> test.txt || true
cat test.txt | grep "FAILED test_fail.py::test_answer - assert 4 == 5"
- pytest >> test.txt || true
- cat test.txt | grep "FAILED test_fail.py::test_answer - assert 4 == 5"