tests #2654
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 and run tests on | |
# windows and linux systems 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: tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: # only upstream, won't trigger on forks! | |
- cron: '0 0 * * *' # daily | |
jobs: | |
build: | |
env: | |
DOI_ACCESS_TOKEN_ENV: ${{ secrets.DOI_ACCESS_TOKEN_ENV }} | |
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }} 🐍 | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
os: ["ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
environment-file: environment/qa4sm_env.yml | |
activate-environment: qa4sm # todo: must match with name in environment.yml | |
- name: Print environment infos | |
run: | | |
conda info -a | |
conda list | |
pip list | |
which pip | |
which python | |
- name: Activate Environment | |
run: conda activate qa4sm | |
- name: Apply needed settings | |
run: | | |
bash ./init_config.sh test | |
- name: Create log directory | |
run: mkdir -p /tmp/log/valentina | |
- name: Migrate database | |
run: python manage.py migrate | |
- name: Fill database | |
run: python manage.py loaddata versions variables filters datasets networks | |
- name: Tests with token | |
if: ${{ env.DOI_ACCESS_TOKEN_ENV }} | |
run: | | |
pytest | |
- name: Long running tests with token | |
if: ${{ env.DOI_ACCESS_TOKEN_ENV }} | |
run: | | |
pytest -m "not needs_advanced_setup and long_running and not graphs" | |
- name: Graphs tests | |
run: | | |
pytest -m "graphs" | |
- name: Test with no token | |
if: ${{ !env.DOI_ACCESS_TOKEN_ENV }} | |
run: | | |
pytest -k "not test_result_publishing and not test_publish_result" | |
- name: Long running tests with no token | |
if: ${{ !env.DOI_ACCESS_TOKEN_ENV }} | |
run: | | |
pytest -m "not needs_advanced_setup and long_running and not graphs" -k "not test_doi" |