proud-train-93317
07/20/2023, 4:09 PMpython_tests(
name='test_func',
sources=['test_func.py'],
run_goal_use_sandbox=False
)
Result:
print(os.getcwd())
/tmp/pants-sandbox-UZihwe
Is there anything I'm doing incorrectly?curved-television-6568
07/20/2023, 4:16 PMrun
goal and test
goals mixed up. The run_goal_use_sandbox
does not apply to testing, so there’s no escaping that.fresh-cat-90827
07/20/2023, 4:18 PMcurved-television-6568
07/20/2023, 4:18 PMcurved-television-6568
07/20/2023, 4:20 PMcurved-television-6568
07/20/2023, 4:21 PMrun
goal, so it’s being re-used across multiple python target types.proud-train-93317
07/20/2023, 4:29 PMfresh-cat-90827
07/20/2023, 4:29 PM