1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-07-01 06:29:59 +02:00

🚧 Replace Travis with CircleCI

This commit is contained in:
Gerber, Mike 2021-02-10 17:50:34 +01:00
parent 691ce371ca
commit 3b7a1a5631
2 changed files with 20 additions and 16 deletions

20
.circleci/config.yml Normal file
View file

@ -0,0 +1,20 @@
version: 2.1
jobs:
test:
docker:
- image: circleci/python:<< parameters.python-version >>
steps:
- run: locale-gen "en_US.UTF-8"; update-locale LC_ALL="en_US.UTF-8"
- checkout
- run: pip3 install --upgrade pip
- run: pip3 install -r requirements.txt
- run: pytest
workflows:
all-tests:
jobs:
- test:
matrix:
parameters:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]

View file

@ -1,16 +0,0 @@
dist: xenial # required for Python >= 3.7
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install -r requirements.txt
script:
- pytest