diff --git a/integrationtests/test_local_path.py b/integrationtests/test_local_path.py index e4c744d..ccb7de2 100644 --- a/integrationtests/test_local_path.py +++ b/integrationtests/test_local_path.py @@ -4,3 +4,8 @@ class LocalPathTestCase(IntegrationTest): name_of_testcase = "local_path" requirements = ["-e egg#egg=local_path"] + + +class LocalPathTestCase(IntegrationTest): + name_of_testcase = "local_path" + requirements = ["local_path"] diff --git a/integrationtests/test_relative_paths.py b/integrationtests/test_relative_paths.py index 93fb6ce..1a00fbb 100644 --- a/integrationtests/test_relative_paths.py +++ b/integrationtests/test_relative_paths.py @@ -7,3 +7,19 @@ class RelativePathsTestCase(IntegrationTest): def requirements_file_check(self, content): self.assertIn("src = test_package/.", content) + + +class RelativePathsTestCase2(IntegrationTest): + name_of_testcase = "relative_paths_2" + requirements = ["file://./test_package/.#egg=test_package"] + + def requirements_file_check(self, content): + self.assertIn("src = test_package/.", content) + + +class RelativePathsTestCase3(IntegrationTest): + name_of_testcase = "relative_paths_3" + requirements = ["file://test_package/.#egg=test_package"] + + def requirements_file_check(self, content): + self.assertIn("src = test_package/.", content)