diff options
Diffstat (limited to 'tests/examples/first-project.py')
-rw-r--r-- | tests/examples/first-project.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/tests/examples/first-project.py b/tests/examples/first-project.py index 4a378df62..906bb326d 100644 --- a/tests/examples/first-project.py +++ b/tests/examples/first-project.py @@ -12,14 +12,7 @@ from buildstream.testing._utils.site import IS_LINUX pytestmark = pytest.mark.integration -DATA_DIR = os.path.join( - os.path.dirname(os.path.realpath(__file__)), - "..", - "..", - "doc", - "examples", - "first-project", -) +DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "..", "..", "doc", "examples", "first-project",) @pytest.mark.skipif(not IS_LINUX, reason="Only available on linux") @@ -31,10 +24,7 @@ def test_first_project_build_checkout(cli, datafiles): result = cli.run(project=project, args=["build", "hello.bst"]) assert result.exit_code == 0 - result = cli.run( - project=project, - args=["artifact", "checkout", "hello.bst", "--directory", checkout], - ) + result = cli.run(project=project, args=["artifact", "checkout", "hello.bst", "--directory", checkout],) assert result.exit_code == 0 assert_contains(checkout, ["/hello.world"]) |