From 726c121a6765a16651994ed0bae67cddfdffdf3e Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Wed, 27 Jan 2021 15:32:14 -0600 Subject: [PATCH] github-ci: fix MacOS test Make sure Python 3 is used. --- .github/workflows/tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 410ce7a..fba0ed6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -196,10 +196,8 @@ jobs: runs-on: macos-latest steps: - run: brew install python - - run: pip install PyYAML - - run: pip install pytest + - run: pip3 install PyYAML + - run: pip3 install pytest - uses: actions/checkout@v1 - run: PYTHONPATH=. pytest - - run: PYTHONPATH=. python ./tests/integration_tests.py - - + - run: PYTHONPATH=. python3 ./tests/integration_tests.py -- 2.47.3