Skip to content

Commit

Permalink
Remove --pre for DuckDB for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
b-per committed Dec 7, 2022
1 parent 33e0a59 commit 6de39d5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions run_test.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
#!/bin/bash
VENV="venv/bin/activate"

if [[ ! -f $VENV ]]; then
if [[ ! -f $VENV ]]
then
python3 -m venv venv
. $VENV

pip install --upgrade pip setuptools
pip install --pre "dbt-$1"

if [[ $1 == "duckdb" ]]
then
pip install "dbt-$1"
else
pip install --pre "dbt-$1"
fi
fi

. $VENV
Expand Down

0 comments on commit 6de39d5

Please sign in to comment.