flake8 fix #201
Workflow file for this run
This file contains 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: build ⚙️ | |
on: [ push, pull_request ] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
env: | |
WDR_LOGGING_LOGLEVEL: ERROR | |
WDR_LOGGING_LOGFILE: /tmp/woudc-data-registry.log | |
WDR_DB_DEBUG: False | |
WDR_DB_TYPE: postgresql | |
WDR_DB_HOST: localhost | |
WDR_DB_PORT: 5432 | |
WDR_DB_NAME: woudc-data-registry | |
WDR_DB_USERNAME: postgres | |
WDR_DB_PASSWORD: postgres | |
PGPASSWORD: postgres | |
WDR_SEARCH_TYPE: elasticsearch | |
WDR_SEARCH_URL: http://localhost:9200/ | |
WDR_WAF_BASEURL: https://woudc.org/archive/ | |
WDR_WAF_BASEDIR: /tmp | |
WDR_ERROR_CONFIG: data/migrate/errors-backfilling.csv | |
WDR_ALIAS_CONFIG: data/aliases.yml | |
WDR_EXTRA_CONFIG: data/extra-options.yml | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}" | |
strategy: | |
matrix: | |
python-version: [3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
name: Setup Python ${{ matrix.python-version }} | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system dependencies 📦 | |
run: sudo apt-get install -y dh-python devscripts fakeroot debhelper python3-all python3-setuptools | |
- name: Install woudc-extcsv requirement 📦 | |
run: | | |
git clone https://github.com/woudc/woudc-extcsv.git | |
cd woudc-extcsv | |
pip install -r requirements.txt | |
python setup.py install | |
cd .. | |
- name: Install requirements 📦 | |
run: | | |
pip install -r requirements-dev.txt | |
pip install -r requirements-pg.txt | |
pip install -r requirements-docs.txt | |
pip install coveralls | |
- name: Install package 📦 | |
run: python3 setup.py install | |
- name: run tests ⚙️ | |
run: python3 setup.py test | |
- name: run flake8 | |
run: find . -type f -name "*.py" | xargs flake8 | |
- name: build docs | |
run: cd docs && make html && cd .. | |
- name: test coverage ⚙️ | |
continue-on-error: true | |
run: | | |
coverage run -a --source=woudc_data_registry -m unittest woudc_data_registry.tests.test_data_registry | |
coverage run -a --source=woudc_data_registry -m unittest woudc_data_registry.tests.test_report_generation | |
coverage report -m | |
coveralls --service=github | |
- name: build Python package 🏗️ | |
run: python3 setup.py bdist_wheel --universal | |
- name: build Debian package 🏗️ | |
run: sudo debuild -b -uc -us | |