]> git.ipfire.org Git - thirdparty/suricata-update.git/commitdiff
github-ci: fix MacOS test 269/head
authorJason Ish <jason.ish@oisf.net>
Wed, 27 Jan 2021 21:32:14 +0000 (15:32 -0600)
committerJason Ish <jason.ish@oisf.net>
Wed, 27 Jan 2021 21:55:37 +0000 (15:55 -0600)
Make sure Python 3 is used.

.github/workflows/tests.yml

index 410ce7a8f0edca7e8206758da93e36842e0c24f1..fba0ed65129bfb68460b6175f34247e81cb39b11 100644 (file)
@@ -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