-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The YAML files had mixed indentation. This patch fixes this and also add hyphens to mark the beginning of the documents.
- Loading branch information
Showing
2 changed files
with
10 additions
and
8 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,3 +1,4 @@ | ||
--- | ||
env: | ||
browser: true | ||
es2020: true | ||
|
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,25 +1,26 @@ | ||
--- | ||
language: python | ||
|
||
dist: bionic | ||
|
||
# https://devguide.python.org/#branchstatus | ||
python: | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libgnutls28-dev | ||
|
||
before_install: | ||
- pip install flake8 python-coveralls mock coverage | ||
- npm ci | ||
- pip install flake8 python-coveralls mock coverage | ||
- npm ci | ||
|
||
script: | ||
- make test | ||
- make lint | ||
- make test | ||
- make lint | ||
|
||
after_success: | ||
- coveralls | ||
- coveralls |