Skip to content
Merged
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: 5 additions & 4 deletions ci-pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variables:
COVERALLS_SERVICE_NAME: python-ci
python.36: 3.6.10
python.37: 3.7.6
python.38: 3.8.1
python.38: 3.8.2


jobs:
Expand Down Expand Up @@ -52,6 +52,7 @@ jobs:
pip install -e ./libraries/botbuilder-azure
pip install -e ./libraries/botbuilder-testing
pip install -e ./libraries/botbuilder-integration-applicationinsights-aiohttp
pip install -e ./libraries/botbuilder-adapters-slack
pip install -r ./libraries/botframework-connector/tests/requirements.txt
pip install -r ./libraries/botbuilder-core/tests/requirements.txt
pip install coveralls
Expand Down Expand Up @@ -85,16 +86,16 @@ jobs:
- powershell: |
Set-Location ..
Get-ChildItem -Recurse -Force

displayName: 'Dir workspace'
condition: succeededOrFailed()

- powershell: |
# This task copies the code coverage file created by dotnet test into a well known location. In all
# checks I've done, dotnet test ALWAYS outputs the coverage file to the temp directory.
# checks I've done, dotnet test ALWAYS outputs the coverage file to the temp directory.
# My attempts to override this and have it go directly to the CodeCoverage directory have
# all failed, so I'm just doing the copy here. (cmullins)

Get-ChildItem -Path "$(Build.SourcesDirectory)" -Include "*coverage*" | Copy-Item -Destination "$(Build.ArtifactStagingDirectory)/CodeCoverage"
displayName: 'Copy .coverage Files to CodeCoverage folder'
continueOnError: true
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__title__ = "botbuilder-integration-applicationinsights-aiohttp"
__version__ = (
os.environ["packageVersion"] if "packageVersion" in os.environ else "4.4.0b1"
os.environ["packageVersion"] if "packageVersion" in os.environ else "4.7.1"
)
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
__author__ = "Microsoft"
Expand Down