Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adapt integration test to additional VSTS pool 'Hosted Ubuntu 1604' #66

Merged
merged 2 commits into from
Jul 29, 2018
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ The cases of every file is very important. This module is to be used on Windows,

## Release Notes

### 3.0.3

Merged [Pull Request](https://github.com/DarqueWarrior/vsteam/pull/66) from [Kai Walter](https://github.com/KaiWalter) which included the following:

Updated integration tests to account for the new hosted agent pool.

### 3.0.2

Added Get-VSTeamGitRef to retrieve the branches for adding Pull Request support in the future.
Expand Down
2 changes: 1 addition & 1 deletion VSTeam.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
RootModule = ''

# Version number of this module.
ModuleVersion = '3.0.2'
ModuleVersion = '3.0.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
6 changes: 3 additions & 3 deletions integration/test/010_projects.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' {
$actual.name | Should Be 'Default'
}
else {
$actual.Count | Should Be 5
$actual.Count | Should Be 6
}
}
}
Expand All @@ -177,7 +177,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' {
}
else {
$global:queueId = $actual[0].id
$actual.Count | Should Be 5
$actual.Count | Should Be 6
}
}

Expand Down Expand Up @@ -234,7 +234,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' {

# Not supported on TFS 2017
if ($api -ne 'TFS2017') {
It 'Add-VSTeamServiceFabricEndpoint Should add servcie endpoint' {
It 'Add-VSTeamServiceFabricEndpoint Should add service endpoint' {
{ Add-VSTeamServiceFabricEndpoint -ProjectName $newProjectName -endpointName 'ServiceFabricTestEndoint' `
-url "tcp://10.0.0.1:19000" -useWindowsSecurity $false } | Should Not Be $null
}
Expand Down