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 262f7e9 commit d57a2cfCopy full SHA for d57a2cf
template/deploy/{% if 'aws-ecs-fargate' in deployment_targets %}ecs{% endif %}/deploy.sh.jinja
@@ -57,11 +57,11 @@ check_dependencies() {
57
if ! command -v jq &> /dev/null; then
58
missing_deps+=("jq")
59
fi
60
-
+{% raw %}
61
if [ ${#missing_deps[@]} -gt 0 ]; then
62
print_error "Missing dependencies: ${missing_deps[*]}"
63
64
+{% endraw %}
65
print_status "All dependencies found"
66
}
67
tests/conftest.py
@@ -1,5 +1,7 @@
1
"""Pytest configuration and fixtures for django-keel template tests."""
2
3
+from __future__ import annotations
4
+
5
import subprocess
6
from pathlib import Path
7
from typing import Any
0 commit comments