Skip to content

Commit 3bae225

Browse files
committed
Add all OS back.
1 parent c901052 commit 3bae225

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/code_test_and_deploy.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
os: [ubuntu-latest] # TODO: add these back in after tests... windows-latest, macos-latest, macos-14,
28+
os: [windows-latest, macos-latest, macos-14, ubuntu-latest]
2929
python-version: ["3.8", "3.9", "3.10", "3.11"]
3030

3131
steps:
@@ -46,7 +46,10 @@ jobs:
4646
python -m pip install --upgrade pip
4747
pip install .[dev]
4848
- name: Shutdown Ubuntu MySQL (SUDO) # free up port 3306 for ssh tests: https://github.com/orgs/community/discussions/25550
49-
run: sudo service mysql stop # Shutdown the Default MySQL, "sudo" is necessary, please not remove it
49+
run: |
50+
if [ "$RUNNER_OS" == "Linux" ]; then
51+
sudo service mysql stop
52+
fi
5053
- name: Test
5154
run: pytest -k test_combinations_ssh_transfer
5255

0 commit comments

Comments
 (0)