diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 68e95c9..d7cfff6 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python -name: Python application +name: Validate iceshelf on: push: @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3 uses: actions/setup-python@v3 with: python-version: "3.10" @@ -37,6 +37,8 @@ jobs: #flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide #flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Run testsuite + run: | ./extras/testsuite/test.sh insecure #- name: Test with pytest # run: | diff --git a/.travis.yml b/.travis.yml deleted file mode 100755 index df605e5..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: python -install: - - pip install -r requirements.txt - - sudo apt-get install par2 - - sudo apt-get install gnupg -script: ./extras/testsuite/test.sh insecure