-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added secure travis-ci pypi deploy password
* Added deploy section with login credentials for pypi * Encrypted the password for `faradayrf/faradayio` repository per #1
- Loading branch information
Showing
1 changed file
with
11 additions
and
13 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,19 +1,17 @@ | ||
# Specify sudo and dist for Travis-CI environment | ||
sudo: required | ||
dist: trusty | ||
|
||
# Specify Python versions being used and tested | ||
language: python | ||
python: | ||
- "3.5" | ||
|
||
# Install dependencies to virtual environment | ||
- '3.5' | ||
install: | ||
- ~/virtualenv/python3.5/bin/pip3 install -r requirements.txt | ||
|
||
# Run tests from virtual environment | ||
- "~/virtualenv/python3.5/bin/pip3 install -r requirements.txt" | ||
script: | ||
- ~/virtualenv/python3.5/bin/flake8 --exclude docs/ . | ||
- sudo ~/virtualenv/python3.5/bin/pytest tests/ | ||
- sudo ~/virtualenv/python3.5/bin/python3 -m coverage run ~/virtualenv/python3.5/bin/pytest | ||
- coveralls | ||
- "~/virtualenv/python3.5/bin/flake8 --exclude docs/ ." | ||
- sudo ~/virtualenv/python3.5/bin/pytest tests/ | ||
- sudo ~/virtualenv/python3.5/bin/python3 -m coverage run ~/virtualenv/python3.5/bin/pytest | ||
- coveralls | ||
deploy: | ||
provider: pypi | ||
user: "KB1LQC" | ||
password: | ||
secure: EqQ5i1mVqBVOFa/hI7GbEE5MxJuFzV27d90qHfxNxa5lwYqu05mN5uTh3QHdUK75LehJqxvJvb0MNgj3tX5n9Dyef/tbho/YZvKPqdgLiHhIS7zQyqZQ0b3zB0gqG2gxfEZv68qD+EtMYR8UGh2CLEQGQBsG5Qap2VsWMmusS4M52kU321p3nkr8D+PBln9ggG1kEa0y+eQchCr3JbnY4dLb8G0H24yEpt9KSfbulcNFfJW2DP4RQ83zQKU1eU2/gpr6V71WP8YLv9uR8NC1p/iv6WlA1AJUSaHI6KvLZej/0GNz8MxPmqbvTR+6gkAzRoA/rz5ZIe9wgUywCEvMwXERdYT22KB1KhDtwovh+5rj4/DupGYcDb/zxlcuMy6LpDB0/QrWuL2uVudqaEnUpawqUNNCsubifmpkvP+A/iCRez6iMEcdt6nlQZMDlUQgFZsNcvwOVTjWiJF+/UM88StNd0wmkGxkDZWS6nkiWV31sIczFMFgbjAPyoJHS6I3yEwEC9juFjDYYfQ8KI3aKpW+zEFZOT/FjJ/nkqX6gtRQoYfib82wKx3JQezQeR/aTwG5Wx6rlV98ZAenuQyT+t+jAM2dhrzIkspZ0VJMu+I46owHYt7DjE0Y4bj2Wf8SSABUPNuZnZy8FVZpVw+fWVKbBC6C47IQcvHgIJqwdVk= |