diff --git a/azure-coretest.yml b/azure-coretest.yml index d778cc2..45fbf9b 100644 --- a/azure-coretest.yml +++ b/azure-coretest.yml @@ -5,6 +5,9 @@ parameters: pythons: [] platforms: [] +variables: +- group: default-variables + jobs: - ${{ each python in parameters.pythons }}: - ${{ each platform in parameters.platforms }}: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ef45682..c5675ef 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,9 +5,7 @@ pr: - stable variables: - - group: default-variables - - name: pip_cache_dir - value: $(Pipeline.Workspace)/.pip + pip_cache_dir: $(Pipeline.Workspace)/.pip stages: @@ -16,17 +14,6 @@ stages: displayName: Check code quality jobs: - - job: test_var - displayName: Check for the test variable - - pool: - vmImage: 'Ubuntu-latest' - - steps: - - script: echo $TEST_VAR - displayName: Echo var - - - job: flake8 displayName: Run all flake8 checks