Skip to content

Commit ba30954

Browse files
committed
Trying to debug
1 parent 8a2058f commit ba30954

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test-wheel-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
uses: ./.github/actions/install_unix_deps
104104
continue-on-error: false
105105
with:
106-
# for artifact fetching, graphics libs
106+
# for artifact fetching, graphics libs, g++ required for cffi in example
107107
dependencies: "jq wget libgl1 libegl1 g++"
108108
dependent_exes: "jq wget"
109109

cuda_core/tests/example_tests/test_basic_examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ def test_example_pep723(example):
119119
# This example requires a development version of cuda_core, so requirements can't be met.
120120
# That's ok, it was tested in the other test, so we just skip it instead of failing.
121121
if re.search("Because only cuda-(core)|(bindings)", process.stderr.decode()):
122-
pytest.skip(f"Skipping {example} due to unmet PEP 723 requirement")
122+
print("FOUND FAIL TAG")
123+
# if re.search("Because only cuda-(core)|(bindings)", process.stderr.decode()):
124+
# pytest.skip(f"Skipping {example} due to unmet PEP 723 requirement")
123125

124126
if process.stdout:
125127
print(process.stdout.decode())

0 commit comments

Comments
 (0)