add drone config

This commit is contained in:
Julien Fastré 2021-02-20 16:24:16 +01:00
parent ed21941f5b
commit 5d189057be
2 changed files with 19 additions and 0 deletions

9
.drone.yml Normal file
View File

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

10
test.py Normal file
View File

@ -0,0 +1,10 @@
import unittest
class BasicTest(unittest.TestCase):
def test_empty(self):
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()