88 runs-on : ubuntu-latest
99 strategy :
1010 matrix :
11- python-version : ["3.8", "3.9", "3.10", "3.11 "]
11+ python-version : ["3.13 "]
1212
1313 steps :
14- - uses : actions/checkout@v2
15- - name : Set up Python ${{ matrix.python-version }}
16- uses : actions/setup-python@v2
17- with :
18- python-version : ${{ matrix.python-version }}
19- - name : Install dependencies
20- run : |
21- python -m pip install --upgrade pip
22- python -m pip install pytest pytest-cov pytest-benchmark pytest-mock
23- python -m pip install networkx
24- if [ -f requirements.txt ];
14+ - uses : actions/checkout@v2
15+ - name : Set up Python ${{ matrix.python-version }}
16+ uses : actions/setup-python@v2
17+ with :
18+ python-version : ${{ matrix.python-version }}
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install --upgrade pip
22+ python -m pip install pytest pytest-cov pytest-benchmark pytest-mock
23+ python -m pip install networkx
24+ if [ -f requirements.txt ];
2525 then
26- pip install -r requirements.txt;
27- fi
28- - name : Test with pytest and check test coverage
29- run : |
30- pytest --cov=ngraph --cov-fail-under=85
26+ pip install -r requirements.txt;
27+ fi
28+ - name : Test with pytest and check test coverage
29+ run : |
30+ pytest --cov=ngraph --cov-fail-under=85
0 commit comments