Skip to content

Commit 3ce6692

Browse files
committed
fix
1 parent c0ed013 commit 3ce6692

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ jobs:
102102
working-directory: ./tests
103103
run: |
104104
# dont fail if the command fails, just check the output
105-
output=$(atlas migrate diff --env sqlalchemy -c "file://atlas-standalone.hcl" --var dialect=mysql --var path="./broken" 2>&1 || true)
106-
expected_error="NameError: name 'DeclarativeBase' is not defined in broken/models.py"
105+
output=$(atlas migrate diff --env sqlalchemy -c "file://atlas-standalone.hcl" --var dialect=mysql --var path="./testdata/broken" 2>&1 || true)
106+
expected_error="NameError: name 'DeclarativeBase' is not defined in testdata/broken/models.py"
107107
108108
if [[ ! "$output" == *"$expected_error"* ]]; then
109109
echo "Expected command to fail with error message containing: $expected_error";

0 commit comments

Comments
 (0)