We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8fc31 commit d03e8a2Copy full SHA for d03e8a2
.github/workflows/unit-tests.yml
@@ -57,11 +57,11 @@ jobs:
57
# Создаем файл .env, если он не существует
58
if [ ! -f ".env" ]; then
59
echo "Creating .env file for testing..."
60
- cat <<-EOF > .env
61
- DEBUG=True
62
- SECRET_KEY=your_secret_key_for_testing
63
- DATABASE_URL=postgres://postgres:postgres@localhost:5432/testdb
64
- EOF
+ cat <<EOF > .env
+DEBUG=True
+SECRET_KEY=your_secret_key_for_testing
+DATABASE_URL=postgres://postgres:postgres@localhost:5432/testdb
+EOF
65
fi
66
# Импортируем переменные окружения из .env
67
export $(grep -v '^#' .env | xargs)
0 commit comments