Skip to content
Snippets Groups Projects
Commit f091ca55 authored by Joris Wachsmuth's avatar Joris Wachsmuth
Browse files

added testing environment

parent c0aa7579
Branches primo-legacy
No related merge requests found
Pipeline #19866 passed
.idea
.tox
.pytest_cache
swarm.egg-info
venv
\ No newline at end of file
......@@ -19,5 +19,5 @@ setup(
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.10'
]
],
)
File moved
from unittest import TestCase
import swarm
class Test(TestCase):
def test_test(self):
dummy = "hi"
self.assertTrue(True)
\ No newline at end of file
[tox]
envlist = py36,py310
[testenv]
deps = pytest==7.0
commands =
pytest
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment