Skip to content
Snippets Groups Projects
Commit fce52ed3 authored by Lukas Jelonek's avatar Lukas Jelonek
Browse files

Modify tests psot-repository that it can actually be executed with psot

parent 78d90258
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
echo '{"test":{}}' > $2.json
#!/bin/bash
touch $2.example.results
......@@ -23,16 +23,17 @@ class TestExampleRepositoryIsLoadedCorrectly(unittest.TestCase):
def test_that_run_script_is_resolved_correctly(self):
# all paths to scripts should be stored as absolute paths in the configuration. This tests checks if the scripts are reachable via the path specified
script_path = self.config['modules']['example']['analysis']['script']
self.assertTrue(os.path.isabs(script_path), "Script is not absolute " + script_path)
self.assertTrue(os.path.isfile(script_path), "Script is not a file " + script_path)
def test_that_convert_script_is_resolved_correctly(self):
script_path = self.config['modules']['example']['converter']['script']
self.assertTrue(os.path.isabs(script_path), "Script is not absolute " + script_path)
self.assertTrue(os.path.isfile(script_path), "Script is not a file " + script_path)
def test_that_config_exists(self):
self.assertTrue('tools' in self.config, 'config.yml not loaded')
class TestMergingRepositoriesWorksCorrectly(unittest.TestCase):
def setUp(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment