Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
docker:
- image: circleci/python:3.6.9
- image: redislabs/redisai:edge-cpu
- image: redislabs/redisai:edge-cpu-bionic

working_directory: ~/repo

Expand All @@ -24,10 +24,10 @@ jobs:
- run:
name: install dependencies
command: |
virtualenv venv
virtualenv --no-site-packages venv
. venv/bin/activate
pip install -r test-requirements.txt

- save_cache:
paths:
- ./venv
Expand All @@ -39,15 +39,15 @@ jobs:
. venv/bin/activate
nosetests --with-coverage -vsx test
codecov

- store_artifacts:
path: test-reports
destination: test-reports

build_nightly:
docker:
- image: circleci/python:3.6.9
- image: redislabs/redisai:edge-cpu
- image: redislabs/redisai:edge-cpu-bionic

working_directory: ~/repo

Expand All @@ -63,10 +63,10 @@ jobs:
- run:
name: install dependencies
command: |
virtualenv venv
virtualenv --no-site-packgaes venv
. venv/bin/activate
pip install -r test-requirements.txt

- save_cache:
paths:
- ./venv
Expand All @@ -76,9 +76,9 @@ jobs:
name: run tests
command: |
. venv/bin/activate
nosetests -vsx test
nosetests -vsx test

# no need for store_artifacts on nightly builds
# no need for store_artifacts on nightly builds

workflows:
version: 2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Database",
],
)