This commit adds a .gitlab-ci.yml file, which is responsible for defining jobs to be run (in this case only running the test suite) ref: N25B-65
7 lines
86 B
Python
7 lines
86 B
Python
"""
|
|
Temporary file to demonstrate unit testing.
|
|
"""
|
|
|
|
def test_temp():
|
|
assert True
|