Create pyproject.toml

This commit is contained in:
Sergey Petrov
2019-10-28 01:52:20 +03:00
parent aedc64e8bc
commit 8b4230dffa
4 changed files with 40 additions and 7 deletions
+3 -2
View File
@@ -6,8 +6,9 @@ local Pipeline(py_version) = {
name: "test",
image: "python:" + py_version,
commands: [
"pip install .[tests]",
"pytest"
"pip install poetry",
"poetry install -v",
"poetry run pytest"
]
}
]