Commit 88461ae0 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

test: simpler older python version testing

parent 43ebeb26
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -74,6 +74,15 @@ jobs:python:
      - local: tests/jobs/python.yml
    strategy: depend

jobs:python:old:
  stage: test
  variables:
    PYVERSION: 3.7-slim
  trigger:
    include:
      - local: tests/jobs/python.yml
    strategy: depend

jobs:python:custom-image:
  stage: test
  trigger:
+0 −6
Original line number Diff line number Diff line
@@ -11,12 +11,6 @@ python:build:setuptools:
  variables:
    PYTHON_CONTEXT: tests/mockup_projects/python/setuptools

python:build:36:
  image: registry.gitlab.com/just-ci/images/python:3.6-slim
  extends: python:build
  variables:
    PYTHON_CONTEXT: tests/mockup_projects/python/needs36

python:twine:
  rules:
    - when: never
+0 −4
Original line number Diff line number Diff line
FROM python:3.6-slim
COPY . /project
WORKDIR /project
RUN pip install .
+0 −3
Original line number Diff line number Diff line
# python project

Mock up python project to be used in tests for CI templates.
+0 −3
Original line number Diff line number Diff line
"""
Well well, what to write here?
"""
Loading