Skip to content

Commit

Permalink
Tests: move more tests
Browse files Browse the repository at this point in the history
Set data path to unittest folder for the time being
  • Loading branch information
iMichka committed May 6, 2024
1 parent 2e9348c commit 06eac63
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion tests/autoconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
this_module_dir_path = os.path.abspath(
os.path.dirname(sys.modules[__name__].__file__))

data_directory = os.path.join(this_module_dir_path, 'data')
data_directory = os.path.join(this_module_dir_path, '../unittests', 'data')
build_directory = os.path.join(this_module_dir_path, 'temp')

sys.path.insert(1, os.path.join(os.curdir, '..'))
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions unittests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@
from . import string_traits_tester
from . import declarations_cache_tester
from . import has_binary_operator_traits_tester
from . import algorithms_cache_tester
from . import dependencies_tester
from . import free_operators_tester
from . import remove_template_defaults_tester
from . import find_container_traits_tester
from . import attributes_tester
from . import type_as_exception_bug_tester
from . import copy_constructor_tester
from . import plain_c_tester
Expand All @@ -55,7 +53,6 @@
from . import declaration_matcher_tester
from . import calling_convention_tester
from . import const_volatile_arg_tester
from . import array_bug_tester
from . import gccxml10184_tester
from . import gccxml10185_tester
from . import inline_specifier_tester
Expand Down Expand Up @@ -116,7 +113,6 @@
string_traits_tester,
declarations_cache_tester,
has_binary_operator_traits_tester,
algorithms_cache_tester,
dependencies_tester,
free_operators_tester,
type_as_exception_bug_tester,
Expand All @@ -126,7 +122,6 @@
declaration_matcher_tester,
calling_convention_tester,
const_volatile_arg_tester,
array_bug_tester,
gccxml10184_tester,
gccxml10185_tester,
inline_specifier_tester,
Expand All @@ -142,7 +137,6 @@
test_cpp_standards,
test_va_list_tag_removal,
decl_printer_tester,
attributes_tester,
type_traits_tester,
remove_template_defaults_tester,
patcher_tester,
Expand Down

0 comments on commit 06eac63

Please sign in to comment.