@@ -29,27 +29,27 @@ jobs:
29
29
- name : Check Python code quality
30
30
run : flake8 --exclude docs/conf.py --max-line-length=100
31
31
32
- python-tests :
33
- runs-on : ubuntu-latest
32
+ # python-tests:
33
+ # runs-on: ubuntu-latest
34
34
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']
39
39
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/
53
53
54
54
check-docs :
55
55
runs-on : ubuntu-latest
79
79
80
80
check-PR :
81
81
# 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]
83
83
runs-on : ubuntu-latest
84
84
outputs :
85
85
PR_status : ${{ steps.PR.outputs.pr_found }}
0 commit comments