diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-05-29 16:47:29 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-05-29 16:47:29 -0400 |
commit | 7ff6cf1eaa84f1387d60d4eb7ba752480a6bf567 (patch) | |
tree | 553af250db4abb214f3e0b39d668df324ce1764b | |
parent | 5e1d11573350f8035ed607e9c97b9f8896ab3132 (diff) | |
download | sqlalchemy-7ff6cf1eaa84f1387d60d4eb7ba752480a6bf567.tar.gz |
add posargs to pep8
we want to be able to specify --output-file
Change-Id: Ib4e992d47587385a50c35ca915bc5adcb2ca49fa
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -98,7 +98,7 @@ deps= pygments black==19.10b0 commands = - flake8 ./lib/ ./test/ ./examples/ setup.py doc/build/conf.py + flake8 ./lib/ ./test/ ./examples/ setup.py doc/build/conf.py {posargs} black --check . # command run in the github action when cext are active. @@ -111,4 +111,4 @@ commands= [testenv:github-nocext] commands= python -m pytest {env:WORKERS} {env:SQLITE:} {env:POSTGRESQL:} {env:MYSQL:} {env:ORACLE:} {env:MSSQL:} {env:BACKENDONLY:} {env:IDENTS:} {env:NOMEMORY:} {env:COVERAGE:} {posargs} - oracle,mssql,sqlite_file: python reap_dbs.py db_idents.txt
\ No newline at end of file + oracle,mssql,sqlite_file: python reap_dbs.py db_idents.txt |