github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python-legacy/.gitlab-ci.yml (about) 1 # ref: https://docs.gitlab.com/ee/ci/README.html 2 3 stages: 4 - test 5 6 .tests: 7 stage: test 8 script: 9 - pip install -r requirements.txt 10 - pip install -r test-requirements.txt 11 - pytest --cov=lakefs_client 12 13 test-3.6: 14 extends: .tests 15 image: python:3.6-alpine 16 test-3.7: 17 extends: .tests 18 image: python:3.7-alpine 19 test-3.8: 20 extends: .tests 21 image: python:3.8-alpine 22 test-3.9: 23 extends: .tests 24 image: python:3.9-alpine