File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 32
32
Programming Language :: Python :: 3.11
33
33
Programming Language :: Python :: 3.12
34
34
Programming Language :: Python :: 3.13
35
- Programming Language :: Python :: 3.14
36
35
Programming Language :: Python :: Implementation :: CPython
37
36
Programming Language :: Python :: Implementation :: PyPy
38
37
Topic :: Software Development :: Quality Assurance
Original file line number Diff line number Diff line change 9
9
10
10
from typing import List , cast
11
11
12
+ import pytest
13
+
12
14
import coverage
15
+ from coverage import env
13
16
14
17
from tests .coveragetest import CoverageTest
15
18
@@ -35,6 +38,10 @@ def test_metadata(self) -> None:
35
38
assert "github.com/nedbat/coveragepy" in out [2 ]
36
39
assert "Ned Batchelder" in out [3 ]
37
40
41
+ @pytest .mark .skipif (
42
+ env .PYVERSION [3 :5 ] == ("alpha" , 0 ),
43
+ reason = "don't expect classifiers until labelled builds" ,
44
+ )
38
45
def test_more_metadata (self ) -> None :
39
46
# Let's be sure we pick up our own setup.py
40
47
# CoverageTest restores the original sys.path for us.
You can’t perform that action at this time.
0 commit comments