Skip to content

Commit

Permalink
Test coverage combine
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterMcGushion committed Aug 28, 2019
1 parent 9194598 commit 75e2b2a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[run]
parallel = True
omit =
hyperparameter_hunter/library_helpers/__temp_files/*

Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ matrix:
- python: 3.6
env: KERAS="false"
- python: 3.7
env: KERAS="true"
- python: 3.7
env: KERAS="false"
install:
- pip install --upgrade pip
- pip install flake8
Expand All @@ -25,5 +28,6 @@ before_script:
script:
- make test
after_success:
- coverage combine
- coveralls
- codecov
5 changes: 0 additions & 5 deletions hyperparameter_hunter/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ def model_selector(model_initializer):
Examples
--------
>>> from keras.wrappers.scikit_learn import KerasClassifier, KerasRegressor
>>> model_selector(KerasClassifier) == KerasModel
True
>>> model_selector(KerasRegressor) == KerasModel
True
>>> from sklearn.svm import SVC
>>> model_selector(SVC) == Model
True
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def readme():
"hyperparameter-hunter",
# "keras",
# "tensorflow",
"yaml",
"xgboost",
"coveralls",
"codecov",
Expand Down

0 comments on commit 75e2b2a

Please sign in to comment.