Skip to content

Commit 01ad46b

Browse files
author
saville
committed
Debug commit
1 parent 995a0b7 commit 01ad46b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
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 }}

buildrunner/docker/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ def start(
221221
"user": user,
222222
"working_dir": working_dir,
223223
"hostname": hostname,
224-
"cgroupns": cgroupns,
225224
"host_config": self.docker_client.create_host_config(
226225
binds=_binds,
227226
links=links,
@@ -234,6 +233,7 @@ def start(
234233
cap_add=cap_add,
235234
privileged=privileged,
236235
tmpfs=tmpfs,
236+
cgroupns=cgroupns,
237237
),
238238
}
239239
if entrypoint:

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)