diff --git a/python/tffpy/tests/ci_config.py b/python/tffpy/tests/ci_config.py index a84f6cc923c8fb59131e96c45ac1da6cfd62a764..3caea1986e0725dab2f1b929e76ff56082968d75 100644 --- a/python/tffpy/tests/ci_config.py +++ b/python/tffpy/tests/ci_config.py @@ -18,6 +18,10 @@ if __name__ == '__main__': generate_config() config = ConfigParser() config.read(config_file) + print(Path(__file__)) + print(Path(__file__).parent) + print(Path(__file__).parent.parent) + print(Path(__file__).parent.parent.absolute()) data_path = Path(__file__).parent.parent.absolute() / 'data' print('Data path:', str(data_path)) config.set('DATA', 'data_path', str(data_path))