Update README. #2

Merged
julienfastre merged 2 commits from :update-readme into master 2021-02-20 21:50:20 +00:00
2 changed files with 31 additions and 0 deletions
Showing only changes of commit b34224fdf0 - Show all commits

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
---
kind: pipeline
name: default
steps:
- name: test
image: python:3
commands:
- python3 test.py

22
test.py Normal file
View File

@ -0,0 +1,22 @@
import unittest
class BasicTest(unittest.TestCase):
def test_empty(self):
self.assertTrue(True)
def test_second(self):
self.assertTrue(True)
def test_third(self):
self.assertTrue(True)
def test_four(self):
self.assertTrue(True)
def test_five(self):
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()
print("ok, finished")