Data Provider and tests

This commit is contained in:
2019-01-04 15:51:02 +05:00
parent 5d239307ad
commit 752826d872
9 changed files with 404 additions and 1 deletions

14
dodo.py Executable file
View File

@ -0,0 +1,14 @@
#! /usr/bin/env python3
def task_test():
return {
'actions': ['pytest'],
'verbosity': 2,
}
if __name__ == '__main__':
import doit
doit.run(globals())