File tree 1 file changed +1
-11
lines changed
1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 24
24
from ctf_cli .config import CTFCliConfig
25
25
from ctf_cli .behave import BehaveWorkingDirectory , BehaveRunner
26
26
from ctf_cli .exceptions import CTFCliError
27
- from ctf_cli .common_environment import common_environment_py_content , sample_ctl_ctf_config , common_steps_py_content
27
+ from ctf_cli .common_environment import sample_ctl_ctf_config , common_steps_py_content
28
28
29
29
30
30
class Application (object ):
@@ -66,16 +66,6 @@ def init(self):
66
66
os .mkdir (tests_dir )
67
67
check_call ("git add %s" % tests_dir , shell = True )
68
68
69
- env_py_path = os .path .join (tests_dir , "environment.py" )
70
- if os .path .exists (env_py_path ):
71
- logger .info ("File tests/environment.py already exists" )
72
- else :
73
- logger .info ("Creating environment.py" )
74
- # Create environment.py
75
- with open (env_py_path , "w" ) as f :
76
- f .write (common_environment_py_content )
77
- check_call ("git add %s" % env_py_path , shell = True )
78
-
79
69
features_dir = os .path .join (tests_dir , "features" )
80
70
if os .path .exists (features_dir ):
81
71
logger .info ("Directory tests/features already exists" )
You can’t perform that action at this time.
0 commit comments