8000 ci: fix checking CI_GITHUB_API_KEY, refactoring by igrr · Pull Request #5496 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

ci: fix checking CI_GITHUB_API_KEY, refactoring #5496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 15, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Update .travis.yml
install pip3
  • Loading branch information
d-a-v authored Dec 15, 2018
commit 0206c20fb2c1792c5996e2bad5783be7c19dc0fd
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:

- name: "Docs"
script: $TRAVIS_BUILD_DIR/tests/ci/build_docs.sh
install: pip3 install --user -r doc/requirements.txt;
install:
- sudo apt-get install python3-pip
- pip3 install --user -r doc/requirements.txt;

- name: "Style check"
script: $TRAVIS_BUILD_DIR/tests/ci/style_check.sh
Expand Down
0