Skip to content

Commit

Permalink
Disable exeuction tests
Browse files Browse the repository at this point in the history
  • Loading branch information
soininen committed Sep 11, 2023
1 parent 9a06bd6 commit dd181f2
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/test_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,35 +61,35 @@ jobs:
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3

execution-tests:
name: Execution tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", 3.11]
os: [windows-latest, ubuntu-22.04]
needs: unit-tests
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install additional packages for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update -y
sudo apt-get install -y libegl1
- name: Install dependencies
env:
PYTHONUTF8: 1
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: List packages
run:
pip list
- name: Run tests
run:
python -m unittest discover --pattern execution_test.py --verbose
# execution-tests:
# name: Execution tests
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# python-version: [3.8, 3.9, "3.10", 3.11]
# os: [windows-latest, ubuntu-22.04]
# needs: unit-tests
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install additional packages for Linux
# if: runner.os == 'Linux'
# run: |
# sudo apt-get update -y
# sudo apt-get install -y libegl1
# - name: Install dependencies
# env:
# PYTHONUTF8: 1
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.txt
# - name: List packages
# run:
# pip list
# - name: Run tests
# run:
# python -m unittest discover --pattern execution_test.py --verbose

0 comments on commit dd181f2

Please sign in to comment.