Skip to content
Snippets Groups Projects
Commit 878a8298 authored by Hans Fangohr's avatar Hans Fangohr
Browse files

first attempt to have tests (fake tests only)

parent 6320c385
No related branches found
No related tags found
3 merge requests!19Move linux-debian11 into main,!2first attempt to have tests (fake tests only),!1Resolve "First draft for user interface for top level install command"
image: python:latest
stages:
- test-style
- test
before_script:
- cat /etc/issue
- python -V
- which python
- python -m venv ../venv
- source ../venv/bin/activate
- which python
- pwd
- pip install -U pip
- pip --version
- pip install pytest
- pytest --version
style:
stage: test-style
image: python:latest
script:
- black --version
- ruff --version
- ruff .
- black --check --diff .
test3-09:
stage: test
image: python:3.9
script:
- echo "run tests here later"
- python --version
test3-10:
stage: test
image: python:3.10
script:
- echo "run tests here later"
- python --version
test3-11:
stage: test
image: python:3.11
script:
- echo "run tests here later"
- python --version
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