diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..5342972 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: python:3.11 + +stages: + - test + +test: + stage: test + script: + - git clone https://kumig.it/kumisystems/pix360.git project + - cd project + - pip install -Ur requirements.txt + - pip install .. + - python manage.py migrate + - python manage.py test pix360_krpano \ No newline at end of file diff --git a/src/pix360_krpano/tests.py b/src/pix360_krpano/tests.py new file mode 100644 index 0000000..9f45b71 --- /dev/null +++ b/src/pix360_krpano/tests.py @@ -0,0 +1,6 @@ +from django.test import TestCase + +SOURCE_URL = None + +class TestKRPano(TestCase): + pass