Issues (17)

tests/test_setup.py (2 issues)

1
from . import bake_cookie, subprocess_in_dir
0 ignored issues
show
Missing module docstring
Loading history...
2
3
4
def test_bake_and_run_tests(cookies):
0 ignored issues
show
Missing function or method docstring
Loading history...
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