-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up tox ini #105
Clean up tox ini #105
Changes from 17 commits
7c29fbf
90d0eaa
a0f6098
089a303
95ef130
128b36b
769948a
f272aac
b24d54e
e78bd18
17f7bda
a4f740a
8b73ad0
0118899
0ee10f3
f0cbaa0
7dec753
b6c8317
ce4cd67
85f33c4
0b02e09
a727d7e
b83ede5
bceaaaa
4bf9a26
e64f5d0
f3ca75a
6036a7d
1cac631
72b86ab
bf656fa
b586e56
a17bb8f
6e12def
cf2f40c
e3c21c1
9b5f93f
932fb43
9aac92d
4d24878
e90a6eb
794a6c9
e652ba0
26f2780
88f6b7d
6495a25
1cc601f
6f55f8b
29316ea
226f35c
6bf6542
4bf8887
2745bd8
1fb8353
c72119c
cb25c02
d9d1717
adf4e45
80c4dd2
d12a1e2
de0a9e8
04681ba
8127bb2
6699419
870b283
1ded9d7
50c41fa
41f3919
aa9f4ac
5cab4d4
fc8e233
aa8771a
5f0bfd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
dbt-core==0.19.0 | ||
pyodbc>=4.0.27 | ||
azure-identity>=1.4.0 | ||
black~=20.8b1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I renamed it to |
||
pytest-dbt-adapter~=0.4.0 | ||
JCZuurmond marked this conversation as resolved.
Show resolved
Hide resolved
|
||
pytest~=6.2.2 | ||
tox==3.2.0 | ||
flake8>=3.5.0 | ||
certifi==2020.6.20 | ||
JCZuurmond marked this conversation as resolved.
Show resolved
Hide resolved
|
||
. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,8 @@ | ||
[tox] | ||
skipsdist = True | ||
envlist = unit, flake8, integration-sqlserver, integration-synapse | ||
envlist = py37,py38 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. our test suite is ran for python 3.7 and 3.8 |
||
|
||
[testenv:integration-sqlserver] | ||
basepython = python3 | ||
commands = /bin/bash -c '{envpython} -m pytest -v test/integration/sqlserver.dbtspec' | ||
[testenv] | ||
commands = pytest {posargs} | ||
deps = | ||
-r{toxinidir}/requirements.txt | ||
-e. | ||
|
||
[testenv:integration-azuresql] | ||
basepython = python3 | ||
commands = /bin/bash -c '{envpython} -m pytest -v test/integration/azuresql.dbtspec' | ||
passenv = DBT_AZURESQL_DB DBT_AZURESQL_PWD DBT_AZURESQL_SERVER DBT_AZURESQL_UID | ||
deps = | ||
-r{toxinidir}/requirements.txt | ||
-e. | ||
pytest~=6.2.2 | ||
pytest-dbt-adapter~=0.4.0 | ||
dataders marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need this to run testing for multiple python versions