File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ def test_setup():
18
18
19
19
def test_setup_use_markers_true ():
20
20
filename = "setup.py.jj2"
21
- with open (os .path .join ("tests" , "fixtures" , "server_use_marker_true.yml" )) as f :
21
+ config = os .path .join ("tests" , "fixtures" , "server_use_marker_true.yml" )
22
+ with open (config ) as f :
22
23
content = f .read ()
23
24
yaml = YAML (typ = "safe" )
24
25
context = yaml .load (content )
@@ -29,7 +30,8 @@ def test_setup_use_markers_true():
29
30
30
31
def test_setup_use_markers_false ():
31
32
filename = "setup.py.jj2"
32
- with open (os .path .join ("tests" , "fixtures" , "server_use_marker_false.yml" )) as f :
33
+ config = os .path .join ("tests" , "fixtures" , "server_use_marker_false.yml" )
34
+ with open (config ) as f :
33
35
content = f .read ()
34
36
yaml = YAML (typ = "safe" )
35
37
context = yaml .load (content )
You can’t perform that action at this time.
0 commit comments