diff --git a/tests/conftest.py b/tests/conftest.py index f4031efe..4e05a690 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -95,11 +95,10 @@ class Repo2DockerTest(pytest.Function): class LocalRepo(pytest.File): def collect(self): yield Repo2DockerTest( - self.fspath.basename, self, + 'build', self, args=[ '--appendix', 'RUN echo "appendix" > /tmp/appendix', self.fspath.dirname, - './verify', ], ) yield Repo2DockerTest( @@ -107,6 +106,7 @@ class LocalRepo(pytest.File): args=[ '--appendix', 'RUN echo "appendix" > /tmp/appendix', self.fspath.dirname, + './verify', ], )