diff options
author | Federico Caselli <cfederico87@gmail.com> | 2021-09-06 21:12:03 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2021-09-06 22:27:07 +0200 |
commit | b1c50ad223957606a5d5d461f415b3514493eec4 (patch) | |
tree | 4e2d87ea26b574f9c9295d56afebdea90cdb04ea /tox.ini | |
parent | d640192877e4d1da75e8dea34d2374c404e80538 (diff) | |
download | sqlalchemy-workflow_test_aiosqlite.tar.gz |
Add async tests to the github workflowworkflow_test_aiosqlite
Fixes: #6967
Change-Id: I222cb5bdedf572e734c827d72bcbced202cdd62f
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -158,12 +158,16 @@ commands = # command run in the github action when cext are active. [testenv:github-cext] +deps = {[testenv]deps} + .[aiosqlite] commands= python -m pytest {env:WORKERS} {env:SQLITE:} {env:POSTGRESQL:} {env:MYSQL:} {env:ORACLE:} {env:MSSQL:} {env:BACKENDONLY:} {env:IDENTS:} {env:MEMUSAGE:} {env:COVERAGE:} {posargs} oracle,mssql,sqlite_file: python reap_dbs.py db_idents.txt # command run in the github action when cext are not active. [testenv:github-nocext] +deps = {[testenv]deps} + .[aiosqlite] commands= python -m pytest {env:WORKERS} {env:SQLITE:} {env:POSTGRESQL:} {env:MYSQL:} {env:ORACLE:} {env:MSSQL:} {env:BACKENDONLY:} {env:IDENTS:} {env:MEMUSAGE:} {env:COVERAGE:} {posargs} oracle,mssql,sqlite_file: python reap_dbs.py db_idents.txt |