PyQR: colores de relleno y fondo configurables #116
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.9, 3.11] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi | |
- name: Lint with flake8 | |
run: | | |
# TODO: stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --exit-zero --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: Install package | |
run: | | |
python setup.py install | |
- name: Download certificate and private key | |
run: | | |
wget "https://www.sistemasagiles.com.ar/soft/pyafipws/reingart2021.zip" -O reingart2019.zip | |
unzip reingart2019.zip | |
- name: Copy rece.ini file | |
run: | | |
sudo cp conf/rece.ini rece.ini | |
- name: Copy wslum.ini file | |
run: | | |
sudo cp conf/wslum.ini wslum.ini | |
- name: Copy wsremcarne.ini file | |
run: | | |
sudo cp conf/wsremcarne.ini wsremcarne.ini | |
- name: Copy wsltv.ini file | |
run: | | |
sudo cp conf/wsltv.ini wsltv.ini | |
- name: Copy wslsp.ini file | |
run: | | |
sudo cp conf/wslsp.ini wslsp.ini | |
- name: Test with pytest | |
run: | | |
pytest --html=report.html --self-contained-html | |
- name: Upload test report | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: report.html | |
path: report.html | |
- name: Coverage Report | |
run: | | |
pytest --cov-config=.coveragerc --cov-report=html --cov=pyafipws tests/ | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: Coverage_Report | |
path: htmlcov |