-
Notifications
You must be signed in to change notification settings - Fork 3
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 #1 from Otus-DevOps-2018-09/play-travis
Play travis
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Выполнено ДЗ № | ||
|
||
- [ ] Основное ДЗ | ||
- [ ] Задание со * | ||
|
||
## В процессе сделано: | ||
- Пункт 1 | ||
- Пункт 2 | ||
|
||
## Как запустить проект: | ||
- Например, запустить команду X в директории Y | ||
|
||
## Как проверить работоспособность: | ||
- Например, перейти по ссылке http://localhost:8080 | ||
|
||
## PR checklist | ||
- [ ] Выставил label с номером домашнего задания | ||
- [ ] Выставил label с темой домашнего задания |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
dist: trusty | ||
sudo: required | ||
language: bash | ||
before_install: | ||
- curl https://raw.githubusercontent.com/express42/otus-homeworks/2018-09/run.sh | | ||
bash | ||
notifications: | ||
slack: | ||
rooms: | ||
secure: EhTC9IJTQ8T7wpX+rnOcidNbr/VhbenTUNnL0Trmxz0IEu5HVJVcwHs83dKdMMtwxMzQBqZByf6fobkSucSu71hJlL3tawIcGuyCOrsCDjsNSoMZTUf3gHQaM0ClU5M7jzttJEHITKUaDu2FsGkscfQeHjH+rLOObx/pf9qAch/IDBRMQ8ywcvCq03VAQGKW74Iw16qCax4c/YzCDFfJG6+HlaWkT3UifHSdXKs3+nI1bMd7WEY26lx/1dXWJf1CV/WDwI2vWPGns2jmaHxLuQLDR6wLNeMGvnyiJ4YtbB1U9TaWj5eauOG2n32ZXhl8oteNN/S8JRJB86SQLSTKbX+6ishXw3CTAPtEJqj8XcbxaA6pfG6uxxt1wBk9jn+jwB6hFfRFHU7JxgfO7lKdtE4e2fJsg++CJ1YG6QbJ8BFfBw2UAhbe+omjOaqnmcWcVwAnAt7Oq06wp7Ir3knLhyu8GOrNI9hhp3fHgda4RnH1So7ZsTiigQa7EtDOdH9rz+mS9+87uCBQjBEOqtEkWFF38f+N7W/4BGdX4jygbgDEMP4RJQkhu7P7e22mgzlnc78Cerj1N/zeHNTMndBuxdSSzdSKS4qmgjzcShqUeDHT1UHJKFB4U5cqR3NzDjjch7YQKlsaZIHDlQw0h6vMLMrDG0xwDTPC34o96OmAXMk= |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import unittest | ||
|
||
class NumbersTest(unittest.TestCase): | ||
|
||
def test_equal(self): | ||
self.assertEqual(1, 1) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |