summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-07-31 17:13:25 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-07-31 17:13:25 +0200
commit76e6846497dd06179dfeafc6b1b0bdb6c1f873a8 (patch)
tree8d1db17c30682db8cb1653cdcc4de1df3221c825 /testing
parent0020f022b410574d4938ea5d67ad6836f42d2c7a (diff)
downloadsetuptools-scm-76e6846497dd06179dfeafc6b1b0bdb6c1f873a8.tar.gz
fix bad selfinstall test
Diffstat (limited to 'testing')
-rw-r--r--testing/runtests_travis.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/runtests_travis.py b/testing/runtests_travis.py
index aadeeb5..d2d5f9e 100644
--- a/testing/runtests_travis.py
+++ b/testing/runtests_travis.py
@@ -16,4 +16,6 @@ elif os.environ.get("SELFINSTALL"):
import pkg_resources
dist = pkg_resources.get_distribution("setuptools_scm")
- assert set(dist.version) == set(".0"), dist.version
+ import setuptools_scm
+
+ assert dist.version == setuptools_scm.get_version(), dist.version