Skip to content

Commit

Permalink
Use the root directory for the tox project (where the configuration f…
Browse files Browse the repository at this point in the history
…ile is found) to install editable requirements (#151)
  • Loading branch information
dbeatty10 authored Jun 11, 2023
1 parent 50d490a commit 37589c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ commands = /bin/bash -c '{envpython} -m pytest -v {posargs} tests/unit'
passenv = DBT_INVOCATION_ENV
deps =
-r{toxinidir}/requirements-dev.txt
-e.
-r{toxinidir}/requirements-editable.txt

[testenv:integration-mysql-8.0]
basepython = python3.9
commands = {envpython} -m pytest -v --profile mysql {posargs} tests/functional
passenv = DBT_INVOCATION_ENV DBT_MYSQL_SERVER_NAME DBT_MYSQL_80_PORT
deps =
-r{toxinidir}/requirements-dev.txt
-e.
-r{toxinidir}/requirements-editable.txt

[testenv:integration-mysql-5.7]
basepython = python3.9
commands = {envpython} -m pytest -v --profile mysql5 {posargs} tests/functional
passenv = DBT_INVOCATION_ENV DBT_MYSQL_SERVER_NAME DBT_MYSQL_57_PORT
deps =
-r{toxinidir}/requirements-dev.txt
-e.
-r{toxinidir}/requirements-editable.txt

[testenv:integration-mariadb-10.5]
basepython = python3.9
commands = {envpython} -m pytest -v --profile mariadb {posargs} tests/functional
passenv = DBT_INVOCATION_ENV DBT_MYSQL_SERVER_NAME DBT_MARIADB_105_PORT
deps =
-r{toxinidir}/requirements-dev.txt
-e.
-r{toxinidir}/requirements-editable.txt

0 comments on commit 37589c1

Please sign in to comment.