@@ -56,7 +56,6 @@ def _run(cmd_string, custom_working_dir):
56
56
return _run
57
57
58
58
59
- @pytest .mark .skip ()
60
59
def test_archive_no_args (run_simple , run_command , copy_sketch , working_dir ):
61
60
# result = run_simple("dir", copy_sketch)
62
61
# print(result.stdout)
@@ -86,7 +85,6 @@ def test_archive_no_args(run_simple, run_command, copy_sketch, working_dir):
86
85
archive .close ()
87
86
88
87
89
- @pytest .mark .skip ()
90
88
def test_archive_dot_arg (run_command , copy_sketch , working_dir ):
91
89
result = run_command ("archive ." , copy_sketch )
92
90
assert result .ok
@@ -111,7 +109,6 @@ def test_archive_dot_arg(run_command, copy_sketch, working_dir):
111
109
archive .close ()
112
110
113
111
114
- @pytest .mark .skip ()
115
112
def test_archive_dot_arg_relative_zip_path (run_command , copy_sketch , working_dir ):
116
113
# Creates a folder where to save the zip
117
114
archives_folder = f"{ working_dir } /my_archives/"
@@ -140,7 +137,6 @@ def test_archive_dot_arg_relative_zip_path(run_command, copy_sketch, working_dir
140
137
archive .close ()
141
138
142
139
143
- @pytest .mark .skip ()
144
140
def test_archive_dot_arg_absolute_zip_path (run_command , copy_sketch , working_dir ):
145
141
# Creates a folder where to save the zip
146
142
archives_folder = f"{ working_dir } /my_archives/"
@@ -170,7 +166,6 @@ def test_archive_dot_arg_absolute_zip_path(run_command, copy_sketch, working_dir
170
166
archive .close ()
171
167
172
168
173
- @pytest .mark .skip ()
174
169
def test_archive_dot_arg_relative_zip_path_and_name_without_extension (run_command , copy_sketch , working_dir ):
175
170
# Creates a folder where to save the zip
176
171
archives_folder = f"{ working_dir } /my_archives/"
@@ -199,7 +194,6 @@ def test_archive_dot_arg_relative_zip_path_and_name_without_extension(run_comman
199
194
archive .close ()
200
195
201
196
202
- @pytest .mark .skip ()
203
197
def test_archive_dot_arg_absolute_zip_path_and_name_without_extension (run_command , copy_sketch , working_dir ):
204
198
# Creates a folder where to save the zip
205
199
archives_folder = f"{ working_dir } /my_archives/"
@@ -228,7 +222,6 @@ def test_archive_dot_arg_absolute_zip_path_and_name_without_extension(run_comman
228
222
archive .close ()
229
223
230
224
231
- @pytest .mark .skip ()
232
225
def test_archive_dot_arg_custom_zip_path_and_name_with_extension (run_command , copy_sketch , working_dir ):
233
226
# Creates a folder where to save the zip
234
227
archives_folder = f"{ working_dir } /my_archives/"
@@ -257,7 +250,6 @@ def test_archive_dot_arg_custom_zip_path_and_name_with_extension(run_command, co
257
250
archive .close ()
258
251
259
252
260
- @pytest .mark .skip ()
261
253
def test_archive_relative_sketch_path (run_command , copy_sketch , working_dir ):
262
254
result = run_command ("archive ./sketch_simple" )
263
255
assert result .ok
0 commit comments