From 48452e6f8437553bcc02b1016ff837087f8c0dff Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 4 Mar 2018 07:48:23 -0500 Subject: [PATCH] try this Signed-off-by: Kenneth Reitz --- .travis.yml | 6 +++++- tests/test_pipenv.py | 13 ------------- 2 files changed, 5 insertions(+), 14 deletions(-) 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: