From a9885426797d7bf89fc0ddacc4340eb3a72c9f0b Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Tue, 18 Mar 2025 16:16:04 +0100 Subject: [PATCH] simple smoke test --- .azure-pipelines.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9bf1606..eca41ad 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -8,19 +8,6 @@ pool: name: ci-pool-prd steps: -- task: UsePythonVersion@0 - inputs: - versionSpec: '3.10.12' - - script: | - python -m pip install --upgrade pip - pip install -r requirements.txt - displayName: 'Install dependencies' - -- script: | - dbt deps - displayName: 'Install dbt packages' - -- script: | - dbt docs generate - displayName: 'Generate dbt docs' \ No newline at end of file + echo "Running on branch: ${BUILD_SOURCEBRANCH#refs/heads/}" > smoke.txt + displayName: 'Smoke test filesystem access' \ No newline at end of file