Skip to content

Commit 288a3fe

Browse files
authored
Merge pull request #366 from bgrainger/xunit-2.3.1
Update to xUnit 2.3.1.
2 parents 424110e + a9d8c47 commit 288a3fe

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ script:
3232
- pushd tests/MySqlConnector.Tests && dotnet xunit -c Release && popd
3333
- pushd tests/SideBySide
3434
- dotnet build SideBySide.csproj -c Release -f netcoreapp2.0
35-
- echo 'Executing netcoreapp1.1.2 tests with No Compression, No SSL' && ../../.ci/use-config.sh config.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp1.1.2
36-
- echo 'Executing netcoreapp2.0 tests with No Compression, No SSL' && ../../.ci/use-config.sh config.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
37-
- echo 'Executing netcoreapp2.0 Debug Only tests' && time dotnet test -c Debug -f netcoreapp2.0 --filter="FullyQualifiedName~SideBySide.DebugOnlyTests"
38-
- echo 'Executing netcoreapp2.0 tests with Compression, No SSL' && ../../.ci/use-config.sh config.compression.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
39-
- echo 'Executing netcoreapp1.1.2 tests with No Compression, SSL' && ../../.ci/use-config.sh config.ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp1.1.2
40-
- echo 'Executing netcoreapp2.0 tests with No Compression, SSL' && ../../.ci/use-config.sh config.ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
41-
- echo 'Executing netcoreapp2.0 tests with Compression, SSL' && ../../.ci/use-config.sh config.compression+ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
42-
- echo 'Executing netcoreapp2.0 tests with Unix Domain Socket, No Compression, No SSL' && ../../.ci/use-config.sh config.uds.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
43-
- echo 'Executing netcoreapp2.0 tests with Buffering, No Compression, No SSL' && ../../.ci/use-config.sh config.buffer.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet test -c Release -f netcoreapp2.0
35+
- echo 'Executing netcoreapp1.1.2 tests with No Compression, No SSL' && ../../.ci/use-config.sh config.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp1.1.2
36+
- echo 'Executing netcoreapp2.0 tests with No Compression, No SSL' && ../../.ci/use-config.sh config.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
37+
- echo 'Executing netcoreapp2.0 Debug Only tests' && time dotnet xunit -c Debug -f netcoreapp2.0 -class SideBySide.DebugOnlyTests
38+
- echo 'Executing netcoreapp2.0 tests with Compression, No SSL' && ../../.ci/use-config.sh config.compression.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
39+
- echo 'Executing netcoreapp1.1.2 tests with No Compression, SSL' && ../../.ci/use-config.sh config.ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp1.1.2
40+
- echo 'Executing netcoreapp2.0 tests with No Compression, SSL' && ../../.ci/use-config.sh config.ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
41+
- echo 'Executing netcoreapp2.0 tests with Compression, SSL' && ../../.ci/use-config.sh config.compression+ssl.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
42+
- echo 'Executing netcoreapp2.0 tests with Unix Domain Socket, No Compression, No SSL' && ../../.ci/use-config.sh config.uds.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
43+
- echo 'Executing netcoreapp2.0 tests with Buffering, No Compression, No SSL' && ../../.ci/use-config.sh config.buffer.json 172.17.0.1 3307 $NAME $FEATURES && time dotnet xunit -c Release -f netcoreapp2.0
4444
- popd
4545

4646
after_script:

tests/MySqlConnector.Tests/MySqlConnector.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="xunit" Version="2.3.0" />
22-
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0" />
23-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
21+
<PackageReference Include="xunit" Version="2.3.1" />
22+
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
23+
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
2424
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
2525
</ItemGroup>
2626

tests/SideBySide/SideBySide.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<ItemGroup>
2424
<!--testing packages-->
2525
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
26-
<PackageReference Include="xunit" Version="2.3.0" />
27-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
28-
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0" />
26+
<PackageReference Include="xunit" Version="2.3.1" />
27+
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
28+
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
2929
<!--app packages-->
3030
<PackageReference Include="Dapper" Version="1.50.2" />
3131
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="1.1.1" />

0 commit comments

Comments
 (0)