Skip to content

Commit 87d44fb

Browse files
committed
disabled many tests on github actions
1 parent 3bd2293 commit 87d44fb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

tests/test_animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _capture_anim_callback_sequence(background):
6262
print("err")
6363

6464

65-
@pytest.mark.background
65+
#@pytest.mark.background
6666
def test_anim_callback_sequence():
6767
_capture_anim_callback_sequence(background=True)
6868

tests/test_dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
BLENDDIR = Path(__file__).parent / "blender"
99

1010

11-
@pytest.mark.background
11+
#@pytest.mark.background
1212
def test_dataset():
1313
launch_args = dict(
1414
scene="",
@@ -34,7 +34,7 @@ def test_dataset():
3434
assert count == 4
3535

3636

37-
@pytest.mark.background
37+
#@pytest.mark.background
3838
def test_dataset_robustness():
3939
launch_args = dict(
4040
scene="",

tests/test_duplex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
BLENDDIR = Path(__file__).parent / "blender"
77

88

9-
@pytest.mark.background
9+
#@pytest.mark.background
1010
def test_duplex():
1111
launch_args = dict(
1212
scene="",

tests/test_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _run_remote_env(background):
4848
env.close()
4949

5050

51-
@pytest.mark.background
51+
#@pytest.mark.background
5252
def test_remote_env():
5353
_run_remote_env(background=True)
5454

tests/test_launcher.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _validate_result(items):
3636
assert items[second]["remainder"] == ["--x", "4"]
3737

3838

39-
@pytest.mark.background
39+
#@pytest.mark.background
4040
def test_launcher():
4141
with btt.BlenderLauncher(**LAUNCH_ARGS) as bl:
4242
addr = bl.launch_info.addresses["DATA"]
@@ -53,7 +53,7 @@ def _launch(q, tmp_path):
5353
bl.wait()
5454

5555

56-
@pytest.mark.background
56+
#@pytest.mark.background
5757
def test_launcher_connected_remote(tmp_path):
5858
# Simulates BlenderLauncher called from a separate process and
5959
# shows how one can connect to already launched instances through
@@ -83,7 +83,7 @@ def _launch_app(tmp_path, args):
8383
)
8484

8585

86-
@pytest.mark.background
86+
#@pytest.mark.background
8787
def test_launcher_app(tmp_path):
8888

8989
p = mp.Process(target=_launch_app, args=(tmp_path, LAUNCH_ARGS))

0 commit comments

Comments
 (0)