Skip to content

Full Test Workflow

Full Test Workflow #27

name: Full Test Workflow
on: [workflow_dispatch]
jobs:
pytest-full:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
case:
- reporting
- negotiation
- negotiation_quick
- below_threshold
- below_threshold_multilot
- above_threshold_eu
- above_threshold_eu_multilot
- above_threshold_eu_plan
- above_threshold_eu_tender
- above_threshold_ua
- above_threshold_ua_multilot
- above_threshold_ua_features
- above_threshold_ua_multilot_features
- above_threshold_ua_lcc
- above_threshold_ua_multilot_lcc
- close_framework_agreement_ua
- close_framework_agreement_ua_central
- competitive_dialogue_eu
- competitive_dialogue_ua
- esco
- esco_features
- esco_multilot
- simple_defense
env:
PYTHONUNBUFFERED: 1
steps:
- uses: actions/checkout@v2
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Kiev
- name: Set up python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run pytest
env:
API_HOST: ${{ secrets.API_HOST }}
API_TOKEN: ${{ secrets.API_TOKEN }}
DS_HOST: ${{ secrets.DS_HOST }}
DS_USERNAME: ${{ secrets.DS_USERNAME }}
DS_PASSWORD: ${{ secrets.DS_PASSWORD }}
run: |
pytest procedure_tools/test.py::test_${{ matrix.case }}