chore: downgrade flake8 version to 7.1.2 in contrib-requirements.txt #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: guillotina | |
on: [push] | |
jobs: | |
# Job to run pre-checks | |
pre-checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
pip install $(grep -P 'flake8|black|isort' contrib-requirements.txt) | |
- name: Run pre-checks | |
run: | | |
flake8 guillotina_volto --config=setup.cfg | |
isort -c -rc guillotina_volto/ | |
black --check --verbose guillotina_volto | |
# Job to run tests | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
database: ["DUMMY", "postgres"] | |
# Set environment variables | |
env: | |
DATABASE: ${{ matrix.database }} | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the package | |
run: | | |
pip install -r requirements.txt | |
pip install -r contrib-requirements.txt | |
pip install -r requirements-test.txt | |
pip install -e . | |
- name: Run tests | |
run: | | |
pytest -rfE --reruns 2 --cov=guillotina_volto -s --tb=native -v --cov-report xml --cov-append guillotina_volto | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml |