fix gatling 3 launcher generation for windows #1786
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Pull Request
succeeded
Nov 14, 2023 in 19m 34s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #1786 fix gatling 3 launcher generation for windows.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has five jobs, running in parallel.
Job | Python | Xcode | ENV | OS | State |
---|---|---|---|---|---|
10288.1 | 3.7 | DISPLAY=:99.0 | Linux | passed | |
10288.2 | 3.8 | DISPLAY=:99.0 | Linux | passed | |
10288.3 | 3.9 | DISPLAY=:99.0 | Linux | passed | |
10288.4 | 3.10 | DISPLAY=:99.0 | Linux | passed | |
10288.5 Python 3 on macOS | xcode12 | DISPLAY=:99.0 | macOS | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Focal) |
Python Versions | 3.7, 3.8, 3.9, 3.10 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"cache": {
"pip": true
},
"branches": {
"only": [
"master"
]
},
"python": [
"3.7",
"3.8",
"3.9",
"3.10"
],
"env": [
"global={:DISPLAY=>\":99.0\"}={:PIP_INSTALL=>\"\\\"pip install\\\"\"}={:PYTHON=>\"python\"}"
],
"jobs": {
"include": [
{
"os": "osx",
"name": "Python 3 on macOS",
"osx_image": "xcode12",
"language": "shell",
"env": [
{
"PYTHON": "python3"
},
{
"PIP_INSTALL": "\"sudo pip3 install\""
},
{
"RVM_KEY": "\"409B6B1796C275462A1703113804BB82D39DC0E3\""
},
{
"OSX_EXCLUDE": "\"--exclude-test=tests.unit.modules._selenium.test_csharp\""
}
]
}
]
},
"addons": {
"firefox": "latest",
"chrome": "stable",
"apt": {
"packages": [
"python-tk",
"python3-tk"
]
}
},
"install": [
"if [ \"$TRAVIS_OS_NAME\" != \"linux\" ]; then\n gpg --keyserver hkp://keys.gnupg.net --recv-keys $RVM_KEY && rvm get stable || echo \"rvm update fail\"\nfi\n",
"gem install rspec",
"$PIP_INSTALL --upgrade pip",
"if [ \"$TRAVIS_OS_NAME\" = \"linux\" ] && [ \"$TRAVIS_PYTHON_VERSION\" = \"3.9\" ]; then $PIP_INSTALL Cython; fi",
"$PIP_INSTALL -r requirements.txt -r tests/ci/requirements.txt"
],
"before_script": [
"if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then nohup bash -c \"Xvfb :99 &\"; fi",
"if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then sudo nohup bash -c \"xvfb :99 &\"; fi",
"$PYTHON tests/resources/httpserver/start.py &",
"SCRIPT_RUNNER=$PYTHON",
"if [ \"$TRAVIS_OS_NAME\" = \"linux\" ] && [ \"$TRAVIS_PYTHON_VERSION\" = \"3.8\" ]; then CHECK_COV=true; fi",
"if [ \"$CHECK_COV\" = true ]; then SCRIPT_RUNNER=\"coverage run --source=bzt\"; fi"
],
"script": [
"$SCRIPT_RUNNER -m nose2 -s tests/unit -v"
],
"after_success": [
"if [ \"$CHECK_COV\" = true ]; then coverage report -m && codecov; fi"
]
}
Loading