1234567891011121314151617 |
- [tox]
- skipsdist = true
- isolated_build = true
- envlist = clean, lint, without-pyodbc
- [pytest]
- filterwarnings =
- ignore::DeprecationWarning
- [testenv]
- allowlist_externals = pytest
- deps = pipenv
- [testenv:tests]
- commands =
- pipenv install --dev --skip-lock
- pytest tests
|