Use Python3 in GitHub Action

This commit is contained in:
Markus Opolka 2020-03-03 10:04:03 +01:00
parent 3f81e32b29
commit ba9d9b1c39

View File

@ -14,9 +14,9 @@ jobs:
uses: actions/checkout@v2
- name: Unit Test
run: |
python -m unittest discover
python3 -m unittest discover
- name: Coverage
run: |
pip install coverage
python -m coverage run -m unittest discover
python -m coverage report -m --include check_http_json.py
pip3 install coverage
python3 -m coverage run -m unittest discover
python3 -m coverage report -m --include check_http_json.py