Skip to content

Commit d57a2cf

Browse files
author
Django Keel Test
committed
Minor fixes
1 parent 262f7e9 commit d57a2cf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

template/deploy/{% if 'aws-ecs-fargate' in deployment_targets %}ecs{% endif %}/deploy.sh.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ check_dependencies() {
5757
if ! command -v jq &> /dev/null; then
5858
missing_deps+=("jq")
5959
fi
60-
60+
{% raw %}
6161
if [ ${#missing_deps[@]} -gt 0 ]; then
6262
print_error "Missing dependencies: ${missing_deps[*]}"
6363
fi
64-
64+
{% endraw %}
6565
print_status "All dependencies found"
6666
}
6767

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Pytest configuration and fixtures for django-keel template tests."""
22

3+
from __future__ import annotations
4+
35
import subprocess
46
from pathlib import Path
57
from typing import Any

0 commit comments

Comments
 (0)