Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 25 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
language: node_js
sudo: false
node_js:
- "8.11.1"
script: make travis
after_script: make report
node_js-steps: &node_js-steps
language: node_js
script: make travis
after_script: make report

python-steps: &python-steps
language: python
install: pip install flake8
script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

matrix:
include:
- node_js: "8.11.1"
<<: *node_js-steps
- node_js: "node" # current version of Node.js on Travis CI
<<: *node_js-steps
- python: "2.7"
<<: *python-steps
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
<<: *python-steps
2 changes: 1 addition & 1 deletion bin/oref0-autotune.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def assign_args_to_variables(args):
def get_nightscout_profile(nightscout_host):
#TODO: Add ability to use API secret for Nightscout.
res = requests.get(nightscout_host + '/api/v1/profile.json')
with open(os.path.join(autotune_directory, 'nightscout.profile.json'), 'w') as f:
with open(os.path.join(autotune_directory, 'nightscout.profile.json'), 'w') as f: # noqa: F821
f.write(res.text)

def get_openaps_profile(directory):
Expand Down