mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
c0011da069
commit
712ee1c4a7
1 changed files with 13 additions and 7 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue