Skip to content

Commit d082a7c

Browse files
committed
[skip changelog] Yet another CI test
1 parent 325c0c2 commit d082a7c

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

Diff for: test/test_archive.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@ def _run(cmd_string, custom_working_dir):
5656
return _run
5757

5858

59+
@pytest.mark.skip()
5960
def test_archive_no_args(run_simple, run_command, copy_sketch, working_dir):
60-
result = run_simple("dir", copy_sketch)
61-
print(result.stdout)
62-
print(result.stderr)
61+
# result = run_simple("dir", copy_sketch)
62+
# print(result.stdout)
63+
# print(result.stderr)
6364
result = run_command("archive", copy_sketch)
64-
print(result.stdout)
65-
print(result.stderr)
65+
# print(result.stdout)
66+
# print(result.stderr)
6667
assert result.ok
6768

6869
archive = zipfile.ZipFile(f"{working_dir}/sketch_simple.zip")
@@ -85,6 +86,7 @@ def test_archive_no_args(run_simple, run_command, copy_sketch, working_dir):
8586
archive.close()
8687

8788

89+
@pytest.mark.skip()
8890
def test_archive_dot_arg(run_command, copy_sketch, working_dir):
8991
result = run_command("archive .", copy_sketch)
9092
assert result.ok
@@ -109,6 +111,7 @@ def test_archive_dot_arg(run_command, copy_sketch, working_dir):
109111
archive.close()
110112

111113

114+
@pytest.mark.skip()
112115
def test_archive_dot_arg_relative_zip_path(run_command, copy_sketch, working_dir):
113116
# Creates a folder where to save the zip
114117
archives_folder = f"{working_dir}/my_archives/"
@@ -137,6 +140,7 @@ def test_archive_dot_arg_relative_zip_path(run_command, copy_sketch, working_dir
137140
archive.close()
138141

139142

143+
@pytest.mark.skip()
140144
def test_archive_dot_arg_absolute_zip_path(run_command, copy_sketch, working_dir):
141145
# Creates a folder where to save the zip
142146
archives_folder = f"{working_dir}/my_archives/"
@@ -166,6 +170,7 @@ def test_archive_dot_arg_absolute_zip_path(run_command, copy_sketch, working_dir
166170
archive.close()
167171

168172

173+
@pytest.mark.skip()
169174
def test_archive_dot_arg_relative_zip_path_and_name_without_extension(run_command, copy_sketch, working_dir):
170175
# Creates a folder where to save the zip
171176
archives_folder = f"{working_dir}/my_archives/"
@@ -194,6 +199,7 @@ def test_archive_dot_arg_relative_zip_path_and_name_without_extension(run_comman
194199
archive.close()
195200

196201

202+
@pytest.mark.skip()
197203
def test_archive_dot_arg_absolute_zip_path_and_name_without_extension(run_command, copy_sketch, working_dir):
198204
# Creates a folder where to save the zip
199205
archives_folder = f"{working_dir}/my_archives/"
@@ -222,6 +228,7 @@ def test_archive_dot_arg_absolute_zip_path_and_name_without_extension(run_comman
222228
archive.close()
223229

224230

231+
@pytest.mark.skip()
225232
def test_archive_dot_arg_custom_zip_path_and_name_with_extension(run_command, copy_sketch, working_dir):
226233
# Creates a folder where to save the zip
227234
archives_folder = f"{working_dir}/my_archives/"
@@ -250,6 +257,7 @@ def test_archive_dot_arg_custom_zip_path_and_name_with_extension(run_command, co
250257
archive.close()
251258

252259

260+
@pytest.mark.skip()
253261
def test_archive_relative_sketch_path(run_command, copy_sketch, working_dir):
254262
result = run_command("archive ./sketch_simple")
255263
assert result.ok

0 commit comments

Comments
 (0)