Skip to content

temp get rid of testing #36

temp get rid of testing

temp get rid of testing #36

Workflow file for this run

name: Python application test with Github Actions
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Add project root to PYTHONPATH
run: |
echo "PYTHONPATH=$PYTHONPATH:$(pwd)" >> $GITHUB_ENV
#- name: Test with pytest
# run: |
# pip install pytest pytest-cov codecov
# pytest -v --cov=./ --cov-report xml
#- name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage.xml
# flags: unittests
# name: codecov-umbrella
# fail_ci_if_error: true