File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
# Allow manual runs through the web UI
14
14
workflow_dispatch :
15
15
16
+ concurrency :
17
+ group : ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress : true
19
+
16
20
jobs :
17
21
test :
18
22
uses : OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
Original file line number Diff line number Diff line change 57
57
Actual shape: {actual_shape}
58
58
{actual_path}"""
59
59
60
- _pytest_version = Version (pytest .__version__ )
61
- PYTEST_LT_7 = _pytest_version < Version ("7.0.0" )
62
- PYTEST_GE_8_0 = any ([_pytest_version .is_devrelease ,
63
- _pytest_version .is_prerelease ,
64
- _pytest_version >= Version ('8.0' )])
60
+ PYTEST_LT_7 = Version (pytest .__version__ ) < Version ("7.0.0" )
65
61
66
62
# The following are the subsets of formats supported by the Matplotlib image
67
63
# comparison machinery
You can’t perform that action at this time.
0 commit comments