Skip to content
Snippets Groups Projects
Commit 1be616c5 authored by Benedikt's avatar Benedikt
Browse files

fixed build command in cd/ci

parent e19f42de
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
...@@ -26,7 +26,7 @@ test_default: ...@@ -26,7 +26,7 @@ test_default:
stage: test stage: test
script: script:
- source venv/bin/activate # Ensure venv is active - source venv/bin/activate # Ensure venv is active
- pytest --junitxml=report.xml --cov=dccXMLJSONConv --ignore=tests/test_RestServer.py # Ignore the web test - pytest --junitxml=report.xml --cov=dccXMLJSONConv --ignore=tests/test_RestServer.py # Ignore the web test
test_web: test_web:
stage: test stage: test
...@@ -39,8 +39,8 @@ build: ...@@ -39,8 +39,8 @@ build:
stage: build stage: build
script: script:
- source venv/bin/activate # Ensure venv is active - source venv/bin/activate # Ensure venv is active
- python setup.py sdist bdist_wheel - python -m build # Build the package
artifacts: artifacts:
paths: paths:
- dist/ - dist/
expire_in: 1 week expire_in: 1 week
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment