diff --git a/.travis.yml b/.travis.yml index bc0d2634..53049b61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/tests/test_pipenv.py b/tests/test_pipenv.py index 82f46263..e4ccb070 100644 --- a/tests/test_pipenv.py +++ b/tests/test_pipenv.py @@ -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: