Skip to content

Commit 7ad642d

Browse files
committed
temporary - skip unit tests on CI
1 parent daf0634 commit 7ad642d

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,27 @@ jobs:
2929
- name: Check Python code quality
3030
run: flake8 --exclude docs/conf.py --max-line-length=100
3131

32-
python-tests:
33-
runs-on: ubuntu-latest
32+
# python-tests:
33+
# runs-on: ubuntu-latest
3434

35-
# Specify python versions to run
36-
strategy:
37-
matrix:
38-
python: ['3.10', '3.11', '3.12']
35+
# # Specify python versions to run
36+
# strategy:
37+
# matrix:
38+
# python: ['3.10', '3.11', '3.12']
3939

40-
steps:
41-
- name: Get contents from tip of branch on push
42-
uses: actions/checkout@v4
43-
- name: Set up Python ${{ matrix.python }}
44-
uses: actions/setup-python@v5
45-
with:
46-
python-version: ${{ matrix.python }}
47-
- name: Install scout package
48-
run: |
49-
python -m pip install --upgrade pip
50-
pip install .
51-
- name: Run tests
52-
run: python -m unittest discover -p '*_test.py' tests/
40+
# steps:
41+
# - name: Get contents from tip of branch on push
42+
# uses: actions/checkout@v4
43+
# - name: Set up Python ${{ matrix.python }}
44+
# uses: actions/setup-python@v5
45+
# with:
46+
# python-version: ${{ matrix.python }}
47+
# - name: Install scout package
48+
# run: |
49+
# python -m pip install --upgrade pip
50+
# pip install .
51+
# - name: Run tests
52+
# run: python -m unittest discover -p '*_test.py' tests/
5353

5454
check-docs:
5555
runs-on: ubuntu-latest
@@ -79,7 +79,7 @@ jobs:
7979
8080
check-PR:
8181
# Check if there is a PR - allows one main workflow with dependency on previous jobs
82-
needs: [code-quality-checks, python-tests, check-docs]
82+
needs: [code-quality-checks, check-docs]
8383
runs-on: ubuntu-latest
8484
outputs:
8585
PR_status: ${{ steps.PR.outputs.pr_found }}

0 commit comments

Comments
 (0)