diff --git a/bin/run_tests.py b/bin/run_tests.py index 96813ae6..316f9a54 100755 --- a/bin/run_tests.py +++ b/bin/run_tests.py @@ -17,5 +17,4 @@ if __name__ == '__main__': subprocess.check_call(unit_test_args) # run the integration tests - # TODO: REMOVE 'overridden' subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test', '-k', 'overridden']) diff --git a/cibuildwheel/bashlex_eval.py b/cibuildwheel/bashlex_eval.py index 122b50b3..57791b2c 100644 --- a/cibuildwheel/bashlex_eval.py +++ b/cibuildwheel/bashlex_eval.py @@ -66,8 +66,6 @@ def evaluate_word_node(node: bashlex.ast.node, context: NodeExecutionContext) -> value = value.replace(part_string, part_value, 1) - print('node value:', value) - return value diff --git a/test/test_environment.py b/test/test_environment.py index c9b66d0c..dd2de0ea 100644 --- a/test/test_environment.py +++ b/test/test_environment.py @@ -71,7 +71,4 @@ 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