1 | from . import bake_cookie, subprocess_in_dir |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
2 | |||
3 | |||
4 | def test_bake_and_run_tests(cookies): |
||
0 ignored issues
–
show
|
|||
5 | with bake_cookie(cookies) as result: |
||
6 | assert result.project_path.is_dir() |
||
7 | print("python setup.py test", str(result.project_path)) |
||
8 | subprocess_in_dir("python setup.py test", str(result.project_path)) |
||
9 |