fix autobahn test app to be an app (#114)
* fix autobahn test app to be an app * remove net46 version of autobahn conformance test, the autobahn suite doesn't need to be run twice... * add appveyor and travis support for autobahn
This commit is contained in:
parent
8dc68cb798
commit
20d8f1fca2
|
|
@ -16,6 +16,8 @@ env:
|
||||||
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
||||||
mono:
|
mono:
|
||||||
- 4.0.5
|
- 4.0.5
|
||||||
|
python:
|
||||||
|
- "2.7"
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
|
|
@ -27,6 +29,8 @@ branches:
|
||||||
- dev
|
- dev
|
||||||
- /^(.*\/)?ci-.*$/
|
- /^(.*\/)?ci-.*$/
|
||||||
before_install:
|
before_install:
|
||||||
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
|
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl python; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
|
||||||
|
install:
|
||||||
|
- sudo pip install autobahntestsuite "six>=1.9.0"
|
||||||
script:
|
script:
|
||||||
- ./build.sh --quiet verify
|
- ./build.sh --quiet verify
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,9 @@ branches:
|
||||||
- /^(.*\/)?ci-.*$/
|
- /^(.*\/)?ci-.*$/
|
||||||
build_script:
|
build_script:
|
||||||
- build.cmd --quiet verify
|
- build.cmd --quiet verify
|
||||||
|
install:
|
||||||
|
- set PATH=C:\Python27\scripts;%PATH%
|
||||||
|
- pip install autobahntestsuite
|
||||||
clone_depth: 1
|
clone_depth: 1
|
||||||
test: off
|
test: off
|
||||||
deploy: off
|
deploy: off
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ namespace Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest
|
||||||
{
|
{
|
||||||
public class AutobahnTests
|
public class AutobahnTests
|
||||||
{
|
{
|
||||||
[ConditionalFact(Skip = "Failing test. See https://github.com/aspnet/SignalR/issues/23")]
|
[ConditionalFact]
|
||||||
[SkipIfWsTestNotPresent]
|
[SkipIfWsTestNotPresent]
|
||||||
public async Task AutobahnTestSuite()
|
public async Task AutobahnTestSuite()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@
|
||||||
"type": "platform"
|
"type": "platform"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"net46": {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,8 @@
|
||||||
"net46": { }
|
"net46": { }
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"warningsAsErrors": true
|
"warningsAsErrors": true,
|
||||||
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
"configProperties": {
|
"configProperties": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue