We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15eff4e commit 607bab6Copy full SHA for 607bab6
.github/workflows/array-api-tests.yml
@@ -2,6 +2,9 @@ name: Array API Tests
2
3
on: [push, pull_request]
4
5
+env:
6
+ PYTEST_ARGS: "--max-examples 300 -v -rxXfE --ci -o xfail_strict=True"
7
+
8
jobs:
9
tests:
10
runs-on: ubuntu-latest
@@ -42,4 +45,4 @@ jobs:
42
45
run: |
43
46
export PYTHONPATH="${GITHUB_WORKSPACE}/array-api-compat"
44
47
cd ${GITHUB_WORKSPACE}/array-api-tests
- pytest --max-examples 300 -v -rxXfE --ci -o xfail_strict=True --xfails-file ${GITHUB_WORKSPACE}/array-api-compat/numpy-xfails.txt array_api_tests/
48
+ pytest ${PYTEST_ARGS} --xfails-file ${GITHUB_WORKSPACE}/array-api-compat/numpy-xfails.txt array_api_tests/
0 commit comments