diff --git a/.gitlab/ci/base.yml b/.gitlab/ci/base.yml
index f57dd2362b77bc26e111cafe0da56c8b42aec8ab..398e499f57f76282cc56d42943d7778fb1f148e0 100644
--- a/.gitlab/ci/base.yml
+++ b/.gitlab/ci/base.yml
@@ -20,5 +20,5 @@ Tests:
   allow_failure: false
   script:
     - if [ ! -d "tests" ]; then echo "Directory `tests` not found in the repository. Please use `tests` directory to implement unit/functional tests!"; exit 1; fi
-    - pytest tests/
+    - pytest --junitxml=report.xml tests/
 
diff --git a/pydantic_pystac_extensions/__init__.py b/pydantic_pystac_extensions/__init__.py
index b77276876ac7b95aaa7e15361f24ad389cdb85e6..1baf9c758812945663873c618e5895d2b568b783 100644
--- a/pydantic_pystac_extensions/__init__.py
+++ b/pydantic_pystac_extensions/__init__.py
@@ -2,4 +2,4 @@
 
 from .core import create_extension_cls, BaseExtensionModel  # noqa
 
-__version__ = "0.1.3"
+__version__ = "0.1.4"