mirror of
https://github.com/Dineshkarthik/telegram_media_downloader.git
synced 2025-01-03 04:32:01 +08:00
add: testing with python3.5
This commit is contained in:
parent
c49cbc679f
commit
6e92bfcf0e
1 changed files with 23 additions and 0 deletions
|
@ -1,6 +1,28 @@
|
||||||
version: 2
|
version: 2
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
test-3.5:
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.6.7
|
||||||
|
environment:
|
||||||
|
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
|
||||||
|
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
|
||||||
|
LOG_DIR: ${CIRCLE_ARTIFACTS}/testresults/
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Get setuptools
|
||||||
|
shell: /bin/bash
|
||||||
|
command: sudo pip install --upgrade pip setuptools codecov
|
||||||
|
- run:
|
||||||
|
name: Run test
|
||||||
|
shell: /bin/bash
|
||||||
|
command: |
|
||||||
|
sudo make -e test
|
||||||
|
codecov
|
||||||
|
- store_artifacts:
|
||||||
|
path: /tmp/circleci-artifacts
|
||||||
|
|
||||||
test-3.6:
|
test-3.6:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/python:3.6.5
|
- image: circleci/python:3.6.5
|
||||||
|
@ -50,5 +72,6 @@ workflows:
|
||||||
version: 2
|
version: 2
|
||||||
tests:
|
tests:
|
||||||
jobs:
|
jobs:
|
||||||
|
- test-3.5
|
||||||
- test-3.6
|
- test-3.6
|
||||||
- test-3.7
|
- test-3.7
|
Loading…
Reference in a new issue