Skip to content

Commit

Permalink
tox.ini: Fix incorrect dependency syntax
Browse files Browse the repository at this point in the history
Fix the dependency syntax in tox.ini.  The current syntax results in:

  ERROR: Invalid requirement: 'coverage pytest'
  • Loading branch information
mgorny committed Jan 7, 2021
1 parent 5d1e27d commit 3b5aca8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tox.ini
Expand Up @@ -3,7 +3,9 @@ envlist = py{36,37,38,39,py3}

[testenv]
commands = pytest -v pymysql/tests/
deps = coverage pytest
deps =
coverage
pytest
passenv = USER
PASSWORD
PAMSERVICE

0 comments on commit 3b5aca8

Please sign in to comment.