Skip to content

Version 1.4.3 - Context Authentication, new operations and arguments #1361

Version 1.4.3 - Context Authentication, new operations and arguments

Version 1.4.3 - Context Authentication, new operations and arguments #1361

name: Unit testing (Windows)
on:
push:
paths:
- '**.py'
branches:
- main
- 'ver_*'
pull_request:
paths:
- '**.py'
branches:
- main
- 'ver_*'
jobs:
build:
strategy:
matrix:
# os: [macos-latest, windows-latest, ubuntu-latest]
# python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.11']
# runs-on: ${{ matrix.os }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- 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 }}
DEBUG_API_SECRET: ${{ secrets.DEBUG_API_SECRET }}
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