Fix GUI image download location #729
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: Unit testing (US2) | |
on: | |
push: | |
paths: | |
- '**.py' | |
branches: | |
- main | |
- 'ver_*' | |
pull_request: | |
paths: | |
- '**.py' | |
branches: | |
- main | |
- 'ver_*' | |
jobs: | |
us2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pytest coverage | |
pip install -r requirements.txt | |
- name: Test with pytest | |
env: | |
DEBUG_API_ID: ${{ secrets.DEBUG_API_ID_US2 }} | |
DEBUG_API_SECRET: ${{ secrets.DEBUG_API_SECRET_US2 }} | |
DEBUG_API_BASE_URL: us2 | |
CROSS_DEBUG_KEY: ${{ secrets.CROSS_DEBUG_KEY }} | |
CROSS_DEBUG_SECRET: ${{ secrets.CROSS_DEBUG_SECRET }} | |
run: | | |
coverage run --source=src --omit=src/falconpy/debug.py -m pytest -s --ignore-glob=**/manual/* | |
coverage report |