Skip to content

Commit

Permalink
Add all OS back.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Apr 19, 2024
1 parent c901052 commit 611e63e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code_test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

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

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

Expand Down

0 comments on commit 611e63e

Please sign in to comment.