Bump the python-dependencies group across 1 directory with 2 updates #67
Workflow file for this run
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: Run Integration Test Scripts | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.github/workflows/test-scripts.yml' | |
- 'arelle/**' | |
- 'tests/**' | |
- '**.py' | |
- '**.pyw' | |
- 'requirements*.txt' | |
permissions: {} | |
jobs: | |
run-tests: | |
name: ${{ matrix.os }} - ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-14 | |
- ubuntu-24.04 | |
- windows-2022 | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: Install Python 3 | |
uses: actions/setup-python@v5.3.0 | |
with: | |
cache: 'pip' | |
check-latest: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements-test.txt | |
pip install -r requirements-plugins.txt | |
- name: Run integration tests with pytest | |
run: | | |
pytest -s --disable-warnings --all --download-cache --offline --arelle="python arelleCmdLine.py" tests/integration_tests/scripts/test_scripts.py | |
- name: Upload log artifacts | |
if: always() | |
uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: ${{ matrix.os }}_${{ matrix.python-version }}_logs | |
if-no-files-found: error | |
include-hidden-files: true | |
path: '.test/**/*.logfile.*' |