Skip to content

Commit 5ec72ee

Browse files
committed
Re-established different python versions for testing
1 parent abfd5a9 commit 5ec72ee

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ "3.14" ]
10+
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
1111
steps:
1212
- uses: actions/checkout@v4
1313

tests/translators_loggers/test_translators_loggers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,6 @@ def test_translator(self, backend) -> None:
257257
# Perform the translation
258258
sys.stderr.write(f"\n[{backend}] Translating workflow...\n")
259259
translator = translator_classes[backend](benchmark.workflow)
260-
sys.stderr.write("Checking that cpu-benchmark is in the path")
261-
sys.stderr.write(f"{shutil.which('cpu-benchmark')}")
262-
for path in os.environ["PATH"].split(os.pathsep):
263-
sys.stderr.write(f"In PATH: {path}...\n")
264260
translator.translate(output_folder=dirpath)
265261

266262
# Make the directory that holds the translation world-writable,

0 commit comments

Comments
 (0)