From: Jason Ish Date: Wed, 27 Jan 2021 21:32:14 +0000 (-0600) Subject: github-ci: fix MacOS test X-Git-Tag: 1.2.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=726c121a6765a16651994ed0bae67cddfdffdf3e;p=thirdparty%2Fsuricata-update.git github-ci: fix MacOS test Make sure Python 3 is used. --- 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