Skip to content

Commit

Permalink
eval file
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Jul 31, 2024
1 parent f925d95 commit 93c90a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion tests/basilisp_blender/integration/int_eval_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

pytestmark = pytest.mark.integration

@pytest.mark.skipif(os.getenv('RUNNER_OS', 'Linux') != 'Linux', reason="GHA UI test is only supported on Linux.")
def test_eval_editor():
result = tu.blender_eval('''from basilisp_blender import eval as evl
import bpy
Expand Down
1 change: 1 addition & 0 deletions tests/basilisp_blender/integration/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def test_blender_eval():
result = blender_eval('print(":result hi")')
assert ":result hi" in result.stdout

@pytest.mark.skipif(os.getenv('RUNNER_OS', 'Linux') != 'Linux', reason="GHA UI test is only supported on Linux.")
def test_blender_eval_file(tmp_path):
codepath = tmp_path / "blender-eval-file-test"
sigfile = tmp_path / "blender-eval-file-test.signal"
Expand Down

0 comments on commit 93c90a0

Please sign in to comment.