diff options
Diffstat (limited to 'grc/tests/test_compiler.py')
-rw-r--r-- | grc/tests/test_compiler.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/grc/tests/test_compiler.py b/grc/tests/test_compiler.py index 1ae3db8603..27b5670871 100644 --- a/grc/tests/test_compiler.py +++ b/grc/tests/test_compiler.py @@ -25,8 +25,12 @@ from grc.compiler import main def test_compiler(capsys): - file_path = path.join(path.dirname(__file__), 'resources', 'test_compiler.grc') - args = Namespace(out_dir=tempfile.gettempdir(), grc_files=[file_path], execute=True) + args = Namespace( + output=tempfile.gettempdir(), + user_lib_dir=False, + grc_files=[path.join(path.dirname(__file__), 'resources', 'test_compiler.grc')], + run=True + ) main(args) |