We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6dd83b commit 30b80e9Copy full SHA for 30b80e9
1 file changed
.github/workflows/test.yml
@@ -20,10 +20,11 @@ jobs:
20
python-version: ${{ matrix.python-version }}
21
- name: Get the skips file
22
run: |
23
- pushd /tmp
+ cd /tmp
24
git clone --depth 1 https://github.com/data-apis/array-api-strict.git
25
ls -l /tmp/array-api-strict
26
- popd
+ cd
27
+ pwd
28
- name: Install dependencies
29
30
python -m pip install --upgrade pip
@@ -37,6 +38,7 @@ jobs:
37
38
ls -l /tmp
39
40
ls -l /tmp/array-api-strict/array-api-tests-xfails.txt
41
42
pytest -v -rxXfE --skips-file /tmp/array-api-strict/array-api-tests-xfails.txt array_api_tests/
43
# We also have internal tests that isn't really necessary for adopters
44
pytest -v -rxXfE meta_tests/
0 commit comments