Skip to content

Commit 5e49ebe

Browse files
author
saville
committed
Debug commit
1 parent 995a0b7 commit 5e49ebe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
matrix:
1919
python-version:
2020
- 3.8
21-
- 3.9
22-
- '3.10'
23-
- '3.11'
21+
# - 3.9
22+
# - '3.10'
23+
# - '3.11'
2424
steps:
2525
- uses: actions/checkout@v2
2626
- name: Set up Python ${{ matrix.python-version }}

tests/test_buildrunner_files.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ def _get_test_runs(
100100
) -> List[Tuple[str, str, Optional[List[str]], int]]:
101101
file_names = []
102102
for file_name in os.listdir(test_dir):
103+
if "systemd" not in file_name:
104+
continue
103105
if serial_tests:
104106
if file_name in serial_test_files:
105107
file_names.append(file_name)

0 commit comments

Comments
 (0)