Skip to content

Commit a712de7

Browse files
committedDec 4, 2021
test: update namespace test
1 parent 0b44c88 commit a712de7

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed
 

‎tests/test_build.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,15 @@ def test_build_wheel_only(copy_sample):
7373
def test_build_ns_main(copy_sample):
7474
td = copy_sample('ns1-pkg')
7575
(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')):
76+
tracked = [
77+
'EG_README.rst',
78+
'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)):
7985
res = build.main(td / 'pyproject.toml')
8086
assert res.wheel.file.suffix == '.whl'
8187
assert res.sdist.file.name.endswith('.tar.gz')

0 commit comments

Comments
 (0)