-
Notifications
You must be signed in to change notification settings - Fork 154
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 #120 from CiscoDevNet/v1.x
Add support for the Admin Audit Events API
- Loading branch information
Showing
19 changed files
with
849 additions
and
320 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,30 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.5" | ||
- "3.6" | ||
# - "3.7" It doesn't look like Travis is supporting v3.7 yet | ||
install: "script/setup" | ||
script: "script/ci" | ||
cache: pip | ||
|
||
install: script/setup | ||
|
||
jobs: | ||
include: | ||
- name: "Lint" | ||
python: 3.8 | ||
script: script/test lint | ||
|
||
- name: "Tests on Python 2.7" | ||
python: 2.7 | ||
script: script/ci | ||
|
||
- name: "Tests on Python 3.5" | ||
python: 3.5 | ||
script: script/ci | ||
|
||
- name: "Tests on Python 3.6" | ||
python: 3.6 | ||
script: script/ci | ||
|
||
- name: "Tests on Python 3.7" | ||
python: 3.7 | ||
script: script/ci | ||
|
||
- name: "Tests on Python 3.8" | ||
python: 3.8 | ||
script: script/ci |
Large diffs are not rendered by default.
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
Oops, something went wrong.