diff --git a/bin/run_tests.py b/bin/run_tests.py index 17f06aa5..96813ae6 100755 --- a/bin/run_tests.py +++ b/bin/run_tests.py @@ -17,4 +17,5 @@ if __name__ == '__main__': subprocess.check_call(unit_test_args) # run the integration tests - subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test']) + # TODO: REMOVE 'overridden' + subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test', '-k', 'overridden']) diff --git a/test/test_environment.py b/test/test_environment.py index 03bf3bd2..7f1c641c 100644 --- a/test/test_environment.py +++ b/test/test_environment.py @@ -70,4 +70,7 @@ def test_overridden_path(tmp_path, capfd): assert len(os.listdir(output_dir)) == 0 captured = capfd.readouterr() + # TODO: REMOVE THIS PRINT + print('captured.out', captured.out) + print('captured.err', captured.err) assert "python available on PATH doesn't match our installed instance" in captured.err