Skip to content

Commit

Permalink
build: remove pypy2 and 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lucagiove committed Apr 3, 2023
1 parent 0fb17ff commit 4ac01c4
Showing 1 changed file with 50 additions and 54 deletions.
104 changes: 50 additions & 54 deletions .github/workflows/pythonapp.yml
Expand Up @@ -3,69 +3,65 @@

name: Python build

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.6, 3.7, 3.8, pypy2, pypy3]
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ 2.7, 3.7, 3.8, pypy3 ]
exclude:
- os: macos-latest
python-version: pypy2
- os: macos-latest
python-version: pypy3
- os: windows-latest
python-version: pypy2
- os: windows-latest
python-version: pypy3
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install -e .[test]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
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: Test with pytest
run: |
coverage run --branch --source src/ -m pytest --verbose utests/
- name: Unit tests coverage
run: |
coverage report
coverage xml
- name: Update codecov for unit tests
uses: codecov/codecov-action@v2
with:
flags: unit
file: coverage.xml
- name: Test with Robot Framework and coverage
run: |
coverage erase
coverage run --branch --source src/ -m robot --loglevel trace:info --exclude skip --pythonpath src --outputdir ./tests-report --consolecolors ansi atests
- name: Acceptance tests coverage
run: |
coverage report
coverage xml
- name: Update codecov for acceptance tests
uses: codecov/codecov-action@v2
with:
flags: acceptance
file: coverage.xml
- name: Archive Robot Framework Tests Report
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: rf-tests-report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./tests-report
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install -e .[test]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
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: Test with pytest
run: |
coverage run --branch --source src/ -m pytest --verbose utests/
- name: Unit tests coverage
run: |
coverage report
coverage xml
- name: Update codecov for unit tests
uses: codecov/codecov-action@v2
with:
flags: unit
file: coverage.xml
- name: Test with Robot Framework and coverage
run: |
coverage erase
coverage run --branch --source src/ -m robot --loglevel trace:info --exclude skip --pythonpath src --outputdir ./tests-report --consolecolors ansi atests
- name: Acceptance tests coverage
run: |
coverage report
coverage xml
- name: Update codecov for acceptance tests
uses: codecov/codecov-action@v2
with:
flags: acceptance
file: coverage.xml
- name: Archive Robot Framework Tests Report
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: rf-tests-report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./tests-report

0 comments on commit 4ac01c4

Please sign in to comment.