Using pytest from now on

This commit is contained in:
Sergey Petrov
2019-06-02 19:39:40 +03:00
parent fbcf36f955
commit be7438a653
9 changed files with 207 additions and 230 deletions
+2 -3
View File
@@ -6,9 +6,8 @@ local Pipeline(py_version) = {
name: "test",
image: "python:" + py_version,
commands: [
"pip install .",
"pip install -r requirements-dev.txt",
"nosetests"
"pip install .[tests]",
"pytest"
]
}
]