summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_tagopt.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_tagopt.py b/tests/test_tagopt.py
index 6d87b52..6eb8a87 100644
--- a/tests/test_tagopt.py
+++ b/tests/test_tagopt.py
@@ -48,6 +48,17 @@ def test_default_tag(temp_pkg):
assert wheels[0].ext == '.whl'
+def test_build_number(temp_pkg):
+ subprocess.check_call([sys.executable, 'setup.py', 'bdist_wheel', '--build-number=1'],
+ cwd=str(temp_pkg))
+ dist_dir = temp_pkg.join('dist')
+ assert dist_dir.check(dir=1)
+ wheels = dist_dir.listdir()
+ assert len(wheels) == 1
+ assert (wheels[0].basename == 'Test-1.0-1-py%s-none-any.whl' % (sys.version[0],))
+ assert wheels[0].ext == '.whl'
+
+
def test_explicit_tag(temp_pkg):
subprocess.check_call(
[sys.executable, 'setup.py', 'bdist_wheel', '--python-tag=py32'],