Skip to content

Commit e5c0646

Browse files
committed
Removed Full Framework tests from .travis.yml (#278)
1 parent 109be7d commit e5c0646

File tree

1 file changed

+19
-23
lines changed

1 file changed

+19
-23
lines changed

.travis.yml

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,22 @@ branches:
1414
- development
1515
- ^version-.*$
1616
script:
17-
- dotnet build
18-
- dotnet test "samples/MusicStore/MusicStore.Test/MusicStore.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
19-
- dotnet test "samples/Blog/Blog.Test/Blog.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
20-
- dotnet test "samples/ApplicationParts/ApplicationParts.Test/ApplicationParts.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
21-
- dotnet test "samples/Autofac/Autofac.AssemblyInit.Test/Autofac.AssemblyInit.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
22-
- dotnet test "samples/Autofac/Autofac.NoContainerBuilder.Test/Autofac.NoContainerBuilder.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
23-
- dotnet test "samples/Autofac/Autofac.Test/Autofac.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
24-
- dotnet test "samples/Configuration/Test.Core.MissingAppPackage/Test.Core.MissingAppPackage.csproj" --configuration Release --no-build -f netcoreapp2.1
25-
- dotnet test "samples/Configuration/Test.DifferentEnvironment/Test.DifferentEnvironment.csproj" --configuration Release --no-build -f netcoreapp2.1
26-
- dotnet test "samples/Configuration/Test.ExplicitNoStartupType/Test.ExplicitNoStartupType.csproj" --configuration Release --no-build -f netcoreapp2.1
27-
- dotnet test "samples/Configuration/Test.FullFramework.NoCompilationContext/Test.FullFramework.NoCompilationContext.csproj" --configuration Release --no-build -f netcoreapp2.1
28-
- dotnet test "samples/Configuration/Test.MissingStartupType/Test.MissingStartupType.csproj" --configuration Release --no-build -f netcoreapp2.1
29-
- dotnet test "samples/Configuration/Test.NoAsync/Test.NoAsync.csproj" --configuration Release --no-build -f netcoreapp2.1
30-
- dotnet test "samples/Configuration/Test.NoStartupType/Test.NoStartupType.csproj" --configuration Release --no-build -f netcoreapp2.1
31-
- dotnet test "samples/Configuration/Test.WrongStartupType/Test.WrongStartupType.csproj" --configuration Release --no-build -f netcoreapp2.1
32-
- dotnet test "samples/Configuration/Test.WrongTestAssembly/Test.WrongTestAssembly.csproj" --configuration Release --no-build -f netcoreapp2.1
33-
- dotnet test "samples/Configuration/Test.WrongWebAssembly/Test.WrongWebAssembly.csproj" --configuration Release --no-build -f netcoreapp2.1
34-
- dotnet test "samples/FullFramework/FullFramework.AssemblyInit.Test/FullFramework.AssemblyInit.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
35-
- dotnet test "samples/FullFramework/FullFramework.Test/FullFramework.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
36-
- dotnet test "samples/Lite/Lite.Test/Lite.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
37-
- dotnet test "samples/NoStartup/NoStartup.Test/NoStartup.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
38-
- dotnet test "samples/WebStartup/WebStartup.Test/WebStartup.Test.csproj" --configuration Release --no-build -f netcoreapp2.1
39-
17+
- dotnet build --configuration Release --framework netcoreapp2.1
18+
- dotnet test "samples/MusicStore/MusicStore.Test/MusicStore.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
19+
- dotnet test "samples/Blog/Blog.Test/Blog.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
20+
- dotnet test "samples/ApplicationParts/ApplicationParts.Test/ApplicationParts.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
21+
- dotnet test "samples/Autofac/Autofac.AssemblyInit.Test/Autofac.AssemblyInit.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
22+
- dotnet test "samples/Autofac/Autofac.NoContainerBuilder.Test/Autofac.NoContainerBuilder.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
23+
- dotnet test "samples/Autofac/Autofac.Test/Autofac.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
24+
- dotnet test "samples/Configuration/Test.Core.MissingAppPackage/Test.Core.MissingAppPackage.csproj" --configuration Release --no-build --framework netcoreapp2.1
25+
- dotnet test "samples/Configuration/Test.DifferentEnvironment/Test.DifferentEnvironment.csproj" --configuration Release --no-build --framework netcoreapp2.1
26+
- dotnet test "samples/Configuration/Test.ExplicitNoStartupType/Test.ExplicitNoStartupType.csproj" --configuration Release --no-build --framework netcoreapp2.1
27+
- dotnet test "samples/Configuration/Test.MissingStartupType/Test.MissingStartupType.csproj" --configuration Release --no-build --framework netcoreapp2.1
28+
- dotnet test "samples/Configuration/Test.NoAsync/Test.NoAsync.csproj" --configuration Release --no-build --framework netcoreapp2.1
29+
- dotnet test "samples/Configuration/Test.NoStartupType/Test.NoStartupType.csproj" --configuration Release --no-build --framework netcoreapp2.1
30+
- dotnet test "samples/Configuration/Test.WrongStartupType/Test.WrongStartupType.csproj" --configuration Release --no-build --framework netcoreapp2.1
31+
- dotnet test "samples/Configuration/Test.WrongTestAssembly/Test.WrongTestAssembly.csproj" --configuration Release --no-build --framework netcoreapp2.1
32+
- dotnet test "samples/Configuration/Test.WrongWebAssembly/Test.WrongWebAssembly.csproj" --configuration Release --no-build --framework netcoreapp2.1
33+
- dotnet test "samples/Lite/Lite.Test/Lite.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
34+
- dotnet test "samples/NoStartup/NoStartup.Test/NoStartup.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1
35+
- dotnet test "samples/WebStartup/WebStartup.Test/WebStartup.Test.csproj" --configuration Release --no-build --framework netcoreapp2.1

0 commit comments

Comments
 (0)