We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b44c88 commit a712de7Copy full SHA for a712de7
tests/test_build.py
@@ -73,9 +73,15 @@ def test_build_wheel_only(copy_sample):
73
def test_build_ns_main(copy_sample):
74
td = copy_sample('ns1-pkg')
75
(td / '.git').mkdir() # Fake a git repo
76
-
77
- with MockCommand('git', LIST_FILES_TEMPLATE.format(
78
- python=sys.executable, module='ns1/pkg/__init__.py')):
+ tracked = [
+ 'EG_README.rst',
+ 'ns1/pkg/__init__.py',
79
+ 'pyproject.toml',
80
+ ]
81
+ untracked_deleted = ['dist/ns1.pkg-0.1.tar.gz']
82
+
83
+ with MockCommand('git', make_git_script(tracked=tracked,
84
+ untracked_deleted=untracked_deleted)):
85
res = build.main(td / 'pyproject.toml')
86
assert res.wheel.file.suffix == '.whl'
87
assert res.sdist.file.name.endswith('.tar.gz')
0 commit comments