File tree 1 file changed +0
-10
lines changed
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 16
16
from setuptools import setup
17
17
from setuptools import Extension
18
18
from setuptools .command .build_ext import build_ext as BuildExt
19
- from setuptools .command .test import test as TestCommand
20
19
from subprocess import Popen , PIPE
21
20
22
21
DIR = os .path .abspath (os .path .dirname (__file__ ))
@@ -52,14 +51,6 @@ def run(self):
52
51
53
52
BuildExt .run (self )
54
53
55
-
56
- class NoopTestCommand (TestCommand ):
57
- def __init__ (self , dist ):
58
- print (
59
- "_gojsonnet does not support running tests with 'python setup.py test'. Please run 'pytest'."
60
- )
61
-
62
-
63
54
jsonnet_ext = Extension (
64
55
"_gojsonnet" ,
65
56
sources = MODULE_SOURCES ,
@@ -79,7 +70,6 @@ def __init__(self, dist):
79
70
version = get_version (),
80
71
cmdclass = {
81
72
"build_ext" : BuildJsonnetExt ,
82
- "test" : NoopTestCommand ,
83
73
},
84
74
ext_modules = [jsonnet_ext ],
85
75
)
You can’t perform that action at this time.
0 commit comments