Skip to content

Commit

Permalink
Debug commit
Browse files Browse the repository at this point in the history
  • Loading branch information
saville committed Nov 12, 2024
1 parent 995a0b7 commit 01ad46b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
# - 3.9
# - '3.10'
# - '3.11'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion buildrunner/docker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ def start(
"user": user,
"working_dir": working_dir,
"hostname": hostname,
"cgroupns": cgroupns,
"host_config": self.docker_client.create_host_config(
binds=_binds,
links=links,
Expand All @@ -234,6 +233,7 @@ def start(
cap_add=cap_add,
privileged=privileged,
tmpfs=tmpfs,
cgroupns=cgroupns,
),
}
if entrypoint:
Expand Down
2 changes: 2 additions & 0 deletions tests/test_buildrunner_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ def _get_test_runs(
) -> List[Tuple[str, str, Optional[List[str]], int]]:
file_names = []
for file_name in os.listdir(test_dir):
if "systemd" not in file_name:
continue
if serial_tests:
if file_name in serial_test_files:
file_names.append(file_name)
Expand Down

0 comments on commit 01ad46b

Please sign in to comment.