Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Continuous Integration

env:
STORAGE_NAME: ${{ secrets.STORAGE_NAME }}
ACCOUNT_SECRET: ${{ secrets.ACCOUNT_SECRET }}

on:
workflow_dispatch:
push:
Expand Down Expand Up @@ -55,13 +51,15 @@ jobs:
with:
enable-cache: true

- uses: azure/login@v3
- name: Azure login
uses: azure/login@v3
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- uses: azure/aks-set-context@v4
- name: Azure AKS set context
uses: azure/aks-set-context@v4
with:
cluster-name: "${{ vars.CLUSTER_NAME }}"
resource-group: "${{ vars.CLUSTER_RESOURCE_GROUP }}"
Expand All @@ -71,10 +69,12 @@ jobs:
uv venv
uv pip install .
shell: bash

- name: Run integration tests
working-directory: tests/integration/
run: ./test_api_endpoints.sh
shell: bash

- name: End-to-end tests
working-directory: tests/e2e/
run: ./test_e2e.sh
Expand Down
2 changes: 1 addition & 1 deletion Babylon/commands/macro/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
from click import argument, command, echo, option, style
from yaml import safe_dump, safe_load

from Babylon.commands.macro.deploy import resolve_inclusion_exclusion
from Babylon.commands.macro.deploy_organization import deploy_organization
from Babylon.commands.macro.deploy_solution import deploy_solution
from Babylon.commands.macro.deploy_webapp import deploy_webapp
from Babylon.commands.macro.deploy_workspace import deploy_workspace
from Babylon.commands.macro.helpers.common import resolve_inclusion_exclusion
from Babylon.utils.decorators import injectcontext
from Babylon.utils.environment import Environment

Expand Down
Loading
Loading