Skip to content
Snippets Groups Projects
Commit 57847491 authored by jack-parsons's avatar jack-parsons
Browse files

Attempting to fix imports for Gitlab

parent 8b3086bd
No related branches found
No related tags found
1 merge request!23Merge in Jack's changes
Pipeline #848 passed
from tests import * from tests import core_tests, basic_tests
import unittest import unittest
import os import os
import sys import sys
import tests.core_tests import core_tests
import tests.basic_tests import basic_tests
def suite(): def suite():
...@@ -12,8 +12,8 @@ def suite(): ...@@ -12,8 +12,8 @@ def suite():
""" """
s = unittest.TestSuite() s = unittest.TestSuite()
# Add the tests to the suite # Add the tests to the suite
s.addTest(tests.core_tests.suite()) s.addTest(core_tests.suite())
s.addTest(tests.basic_tests.suite()) s.addTest(basic_tests.suite())
return s return s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment