We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6264609 commit f6476adCopy full SHA for f6476ad
test/t/test_make.py
@@ -1,4 +1,5 @@
1
import os
2
+import sys
3
4
import pytest
5
@@ -9,7 +10,9 @@ class TestMake:
9
10
@pytest.fixture
11
def remove_extra_makefile(self, bash):
12
yield
- os.remove(f"{bash.cwd}/make/extra_makefile")
13
+ # For some reason macos make doesn't actually create extra_makefile
14
+ if sys.platform != "darwin":
15
+ os.remove(f"{bash.cwd}/make/extra_makefile")
16
17
@pytest.mark.complete("make -f Ma", cwd="make")
18
def test_1(self, completion):
0 commit comments