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
9 changes: 8 additions & 1 deletion .azure-pipelines/daily-ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ extends:
parameters:
pool:
name: Azure-Pipelines-1ESPT-ExDShared
image: ubuntu-latest
os: linux
sdl:
sourceAnalysisPool:
Expand All @@ -47,11 +48,17 @@ extends:
inputs:
versionSpec: '3.12'

- task: PipAuthenticate@1
displayName: Authenticate with Azure Artifacts
inputs:
artifactFeeds: Graph Developer Experiences/GraphDeveloperExperiences_Public
onlyAddExtraIndex: false

- script: python -m pip install --upgrade pip
displayName: Upgrade pip
workingDirectory: $(Build.SourcesDirectory)

- script: pip install -e ".[dev]"
- script: pip install -r requirements-dev.txt
displayName: Install dependencies
workingDirectory: $(Build.SourcesDirectory)

Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
-i https://pypi.org/simple

async-generator==1.10 ; python_version >= '3.5'

Expand Down
Loading