Skip to content

Commit

Permalink
tox: Display sqlite3 package version on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzeman committed May 18, 2017
1 parent 588e9d0 commit 1e8b463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ skipsdist = True
[testenv]
commands =
python tox/install_dependencies.py
python -c "import sqlite3; print('SQLite Version: %s' % (sqlite3.sqlite_version,))"
python -c "import sqlite3; print('sqlite3:\n - package: %s\n - library: %s' % (sqlite3.version, sqlite3.sqlite_version))"
py.test --cov-config .coveragerc --cov-append --cov=byte
passenv =
BYTE_ENVIRONMENT
Expand Down

0 comments on commit 1e8b463

Please sign in to comment.