github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/.travis.yml (about) 1 # ref: https://docs.travis-ci.com/user/languages/python 2 language: python 3 python: 4 - "3.7" 5 - "3.8" 6 - "3.9" 7 - "3.10" 8 - "3.11" 9 # uncomment the following if needed 10 #- "3.11-dev" # 3.11 development branch 11 #- "nightly" # nightly build 12 # command to install dependencies 13 install: 14 - "pip install -r requirements.txt" 15 - "pip install -r test-requirements.txt" 16 # command to run tests 17 script: pytest --cov=lakefs_sdk