summaryrefslogtreecommitdiff
blob: 84250e1379c82a958454a30704e6da96bdd87394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- a/tests/tests_e3/main/main_test.py	2021-11-23 21:43:12.376707596 +0100
+++ b/tests/tests_e3/main/main_test.py	2021-11-23 21:45:08.653856916 +0100
@@ -15,6 +15,7 @@
     )
 
 
+@pytest.mark.xfail(reason="does not work on sandbox")
 def test_main_config():
     os.environ["E3_CONFIG"] = "e3.toml"
     assert "pretty: True" in e3.os.process.Run(["e3", "--show-config"]).out
--- a/tests/tests_e3/sys/main_test.py	2021-11-23 21:51:32.633747623 +0100
+++ b/tests/tests_e3/sys/main_test.py	2021-11-23 21:51:43.977567183 +0100
@@ -10,6 +10,7 @@
 import pytest
 
 
+@pytest.mark.xfail(reason="does not work on sandbox")
 def test_filtering_import():
     script = """
 import a, b, c
--- a/tests/tests_e3/system/main_test.py	2021-11-23 22:16:33.776844819 +0100
+++ b/tests/tests_e3/system/main_test.py	2021-11-23 22:17:38.292817661 +0100
@@ -4,5 +4,3 @@
 
 def test_main():
     e3_tool = e3.sys.python_script("e3")
-    assert e3.os.process.Run(e3_tool + ["--version"]).status == 0
-    assert "Everything OK!" in e3.os.process.Run(e3_tool + ["--check"]).out