This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
143 changed files
with
2,170 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,93 @@ | ||
language: python | ||
os: | ||
- linux | ||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install coverage | ||
before_script: | ||
- python scripts/generate_certificates.py | ||
script: | ||
- coverage run run_all_tests.py | ||
- coverage combine | ||
- coverage report | ||
branches: | ||
only: | ||
- master | ||
- development | ||
matrix: | ||
include: | ||
- language: python | ||
os: linux | ||
python: "2.7" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install coverage | ||
before_script: | ||
- python scripts/generate_certificates.py | ||
script: | ||
- coverage run run_all_tests.py | ||
- coverage combine | ||
- coverage report | ||
branches: | ||
only: | ||
- master | ||
- development | ||
|
||
- language: python | ||
os: linux | ||
python: "3.4" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install coverage | ||
before_script: | ||
- python scripts/generate_certificates.py | ||
script: | ||
- coverage run run_all_tests.py | ||
- coverage combine | ||
- coverage report | ||
branches: | ||
only: | ||
- master | ||
- development | ||
|
||
- language: python | ||
os: linux | ||
python: "3.5" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install coverage | ||
before_script: | ||
- python scripts/generate_certificates.py | ||
script: | ||
- coverage run run_all_tests.py | ||
- coverage combine | ||
- coverage report | ||
branches: | ||
only: | ||
- master | ||
- development | ||
|
||
- language: python | ||
os: linux | ||
python: "3.6" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install coverage | ||
before_script: | ||
- python scripts/generate_certificates.py | ||
script: | ||
- coverage run run_all_tests.py | ||
- coverage combine | ||
- coverage report | ||
branches: | ||
only: | ||
- master | ||
- development | ||
|
||
- language: node_js | ||
node_js: | ||
- "node" | ||
addons: | ||
apt: | ||
sources: | ||
- google-chrome | ||
packages: | ||
- google-chrome-stable | ||
- google-chrome-beta | ||
before_install: | ||
- export CHROME_BIN=chromium-browser | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
before_script: | ||
- cd walkoff/client | ||
- npm install | ||
script: npm run test -- --single-run | ||
branches: | ||
only: | ||
- master | ||
- development | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.