Skip to content
Snippets Groups Projects
Commit f70ad621 authored by Tomáš Orviský's avatar Tomáš Orviský
Browse files

relative paths to tests

parent 48c2e239
No related merge requests found
...@@ -25,7 +25,7 @@ class PyPlamlTest(unittest.TestCase): ...@@ -25,7 +25,7 @@ class PyPlamlTest(unittest.TestCase):
self.assertTrue(False, f"Parser exception in {example_file}") self.assertTrue(False, f"Parser exception in {example_file}")
def test_drawing(self): def test_drawing(self):
main_script = Path(__file__).parent.parent / 'main.py' main_script = pathlib.Path(__file__).parent.parent / 'main.py'
for e in self.examples_sorted: for e in self.examples_sorted:
self.assertEqual( self.assertEqual(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment