Skip to content

Commit

Permalink
Add tests for py3.9 and make tests on py3.8 the main tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alegonz committed Jan 30, 2021
1 parent c115bc8 commit dcf52f5
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,18 @@ jobs:
<<: *test-defaults
docker:
- image: circleci/python:3.7.3-stretch
environment:
RUN_TEST_WITH_COVERAGE: 1

test-py38:
<<: *test-defaults
docker:
- image: circleci/python:3.8.0-buster
environment:
RUN_TEST_WITH_COVERAGE: 1

test-py39:
<<: *test-defaults
docker:
- image: circleci/python:3.9.0-buster

build-wheel:
<<: *build-defaults
Expand Down Expand Up @@ -83,12 +88,17 @@ workflows:
- test-py37:
sklearn_version: *sklearn_version_prev
- test-py37:
name: test-main
sklearn_version: *sklearn_version_latest

# For py3.8 we only test 0.22.* or above
# see: https://github.com/scikit-learn/scikit-learn/issues/15328
- test-py38:
sklearn_version: *sklearn_version_prev
- test-py38:
name: test-main
sklearn_version: *sklearn_version_latest

- test-py39:
sklearn_version: *sklearn_version_prev
- test-py39:
sklearn_version: *sklearn_version_latest

- build-wheel:
Expand Down Expand Up @@ -120,3 +130,5 @@ workflows:
sklearn_version: "nightly"
- test-py38:
sklearn_version: "nightly"
- test-py39:
sklearn_version: "nightly"

0 comments on commit dcf52f5

Please sign in to comment.