-
Notifications
You must be signed in to change notification settings - Fork 866
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from OSSHealth/dev
Release 0.7.0
- Loading branch information
Showing
595 changed files
with
40,554 additions
and
98,216 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 was deleted.
Oops, something went wrong.
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,7 +1,23 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
# command to install dependencies | ||
install: "pip install ." | ||
# command to run tests | ||
script: "python -m pytest ./test" | ||
matrix: | ||
include: | ||
- | ||
install: "pip install ." | ||
language: python | ||
python: "3.6" | ||
notifications: | ||
slack: "augurlabs:T5g5uaEPLwSiTUTRH1kiXGcS" | ||
script: "python -m pytest ./test" | ||
# - | ||
# before_script: | ||
# - "node --version" | ||
# - "npm --version" | ||
# - "node_modules/.bin/newman --version" | ||
# install: | ||
# - "npm install newman" | ||
# language: node_js | ||
# node_js: | ||
# - "8.2.1" | ||
# notifications: | ||
# slack: "augurlabs:T5g5uaEPLwSiTUTRH1kiXGcS" | ||
# script: | ||
# - "node_modules/.bin/newman run https://api.getpostman.com/collections/4566755-ec950b0b-a5e9-4fe3-b1a5-ad4f49c209f9?apikey=$POSTMAN_API_KEY -e https://api.getpostman.com/environments/4566755-392a724a-6e59-4dc9-b70f-50221adf4847?apikey=$POSTMAN_API_KEY" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
# All Vagrant configuration is done below. The "2" in Vagrant.configure | ||
# configures the configuration version (we support older styles for | ||
# backwards compatibility). Please don't change it unless you know what | ||
# you're doing. | ||
Vagrant.configure("2") do |config| | ||
# The most common configuration options are documented and commented below. | ||
# For a complete reference, please see the online documentation at | ||
# https://docs.vagrantup.com. | ||
|
||
# Every Vagrant development environment requires a box. You can search for | ||
# boxes at https://vagrantcloud.com/search. | ||
config.vm.box = "centos/7" | ||
|
||
config.vm.network "forwarded_port", guest: 3333, host: 3333 | ||
config.vm.synced_folder ".", "/vagrant", type: "virtualbox" | ||
|
||
# documentation for more information about their specific syntax and use. | ||
config.vm.provision "shell", path: "util/packaging/vagrant/provision.sh" | ||
|
||
end |
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.