mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
+5
-1
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user