Minor CI/test improvements (#992)

* ci: Travis: pip-list, nvim-version

* tests: remove unused fixture argument
This commit is contained in:
Daniel Hahler
2020-02-02 07:10:11 +01:00
committed by GitHub
parent c9bdefca54
commit ea4de13344
2 changed files with 3 additions and 1 deletions

View File

@@ -22,6 +22,8 @@ install:
sudo apt-get install neovim -y
pip install pynvim pytest-cov
pip list
nvim --version
else
vim --version
fi

View File

@@ -20,7 +20,7 @@ TEST_DIR = os.path.join(root, 'test', 'vspec')
@pytest.fixture(scope='session')
def install_vspec(request):
def install_vspec():
if not os.path.isdir(CACHE_FOLDER):
os.mkdir(CACHE_FOLDER)