Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-04 07:48:23 -05:00
parent 8e6001423c
commit 48452e6f84
2 changed files with 5 additions and 14 deletions
+5 -1
View File
@@ -8,7 +8,11 @@ python:
- "3.6"
env:
- TEST_SUITE='cli'
- TEST_SUITE='not cli'
- TEST_SUITE='install'
- TEST_SUITE='run'
- TEST_SUITE='dotvenv check unused'
- TEST_SUITE='requirements'
- TEST_SUITE='complex'
# - "pypy" # too many cache issues
# - "3.7-dev" # no need, slows down builds
# - "pypy3" # TODO: pkg_config issues
-13
View File
@@ -225,19 +225,6 @@ class TestPipenv:
assert 'urllib3' in p.lockfile['default']
assert 'certifi' in p.lockfile['default']
@pytest.mark.spelling
@pytest.mark.skip(reason="this is slightly non-deterministic")
def test_spell_checking(self):
with PipenvInstance() as p:
c = p.pipenv('install flaskcors', block=False)
c.expect(u'[Y//n]:')
c.send('y')
c.block()
assert c.return_code == 0
assert 'flask-cors' in p.pipfile['packages']
assert 'flask' in p.lockfile['default']
@pytest.mark.install
def test_basic_install(self):
with PipenvInstance() as p: