Skip to content

Commit bb3c67c

Browse files
author
saville
committed
Debug commit
1 parent 995a0b7 commit bb3c67c

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

.github/workflows/build.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ 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
26-
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2
28-
with:
29-
python-version: ${{ matrix.python-version }}
30-
- name: Install dependencies
31-
run: |
32-
python -m pip install --upgrade pip
33-
pip install -r requirements.txt
34-
pip install -r test_requirements.txt
35-
- name: Pre-commit checks
36-
run: pre-commit run --all-files
26+
# - name: Set up Python ${{ matrix.python-version }}
27+
# uses: actions/setup-python@v2
28+
# with:
29+
# python-version: ${{ matrix.python-version }}
30+
# - name: Install dependencies
31+
# run: |
32+
# python -m pip install --upgrade pip
33+
# pip install -r requirements.txt
34+
# pip install -r test_requirements.txt
35+
# - name: Pre-commit checks
36+
# run: pre-commit run --all-files
3737
- name: Test with pytest
3838
# Create the ssh key file once for all testing
3939
run: |

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)