Skip to content

Commit

Permalink
Allowing the use of /bin/bash by tox
Browse files Browse the repository at this point in the history
tox on certain platforms will complain that /bin/bash is not allowed to
be used.  I'm allowing it to be used with this change.
  • Loading branch information
dparent1 committed Dec 8, 2022
1 parent 3ffcf5b commit 34c5549
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ passenv = DBT_* PYTEST_ADDOPTS
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
allowlist_externals=/bin/bash

[testenv:integration-spark-databricks-http]
basepython = python3.8
Expand All @@ -17,6 +18,7 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
-e.
allowlist_externals=/bin/bash

[testenv:integration-spark-databricks-odbc-cluster]
basepython = python3.8
Expand All @@ -27,6 +29,7 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
-e.
allowlist_externals=/bin/bash

[testenv:integration-spark-databricks-odbc-sql-endpoint]
basepython = python3.8
Expand All @@ -37,6 +40,7 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
-e.
allowlist_externals=/bin/bash


[testenv:integration-spark-thrift]
Expand All @@ -48,6 +52,7 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
-e.
allowlist_externals=/bin/bash

[testenv:integration-spark-session]
basepython = python3
Expand All @@ -60,3 +65,4 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
-e.[session]
allowlist_externals=/bin/bash

0 comments on commit 34c5549

Please sign in to comment.