Commit 96d00a2c authored by skysky's avatar skysky

first commit

parent 018a7ae1
---
kind: pipeline
type: docker
name: default
steps:
name: test
image: python
commands:
- pip install -r requirements.txt
- pytest -vv
def num(a, b):
return a + b
pytest
\ No newline at end of file
from main import num
def test_num():
assert num(1,2) == 3
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment