@@ -45,23 +45,23 @@ jobs:
45
45
if : ${{ matrix.numpy-version }}
46
46
run : pip install -I --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "numpy>=0.0.dev0"
47
47
- name : Lint with flake8
48
- if : matrix.python-version == 3.11
48
+ if : matrix.python-version == 3.12
49
49
run : |
50
50
# stop the build if there are Python syntax errors or undefined names
51
51
flake8 deepdiff --count --select=E9,F63,F7,F82 --show-source --statistics
52
52
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
53
53
flake8 deepdiff --count --exit-zero --max-complexity=26 --max-line-lengt=250 --statistics
54
54
- name : Test with pytest and get the coverage
55
- if : matrix.python-version == 3.11
55
+ if : matrix.python-version == 3.12
56
56
run : |
57
- pytest --cov-report=xml --cov=deepdiff tests/ --runslow
57
+ pytest --benchmark-disable -- cov-report=xml --cov=deepdiff tests/ --runslow
58
58
- name : Test with pytest and no coverage report
59
- if : matrix.python-version != 3.11
59
+ if : matrix.python-version != 3.12
60
60
run : |
61
- pytest
61
+ pytest --benchmark-disable
62
62
- name : Upload coverage to Codecov
63
63
uses : codecov/codecov-action@v3
64
- if : matrix.python-version == 3.11
64
+ if : matrix.python-version == 3.12
65
65
with :
66
66
file : ./coverage.xml
67
67
token : ${{ secrets.CODECOV_TOKEN }}
0 commit comments