Skip to content

Commit

Permalink
fix test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellkammer committed Feb 19, 2024
1 parent e0580cd commit abac9ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test_git_310_task:

test_macos_arm64_python310_git_script: |
brew install python@3.10
ln -s (which python3.10) py
ln -s $(which python3.10) py
./py -m pip install .
<<: *PERFORM_TESTS

Expand All @@ -41,7 +41,7 @@ test_git_311_task:

test_macos_arm64_python310_git_script: |
brew install python@3.11
ln -s (which python3.11) py
ln -s $(which python3.11) py
./py -m pip install .
<<: *PERFORM_TESTS

Expand All @@ -53,7 +53,7 @@ test_pip_310_task:

test_macos_arm64_python310_git_script: |
brew install python@3.10
ln -s (which python3.10) py
ln -s $(which python3.10) py
./py -m pip install maelzel
<<: *PERFORM_TESTS

Expand All @@ -65,7 +65,7 @@ test_pip_311_task:

test_macos_arm64_python310_git_script: |
brew install python@3.11
ln -s (which python3.11) py
ln -s $(which python3.11) py
./py -m pip install maelzel
<<: *PERFORM_TESTS
Expand Down

0 comments on commit abac9ee

Please sign in to comment.