Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
name: run tests
command: |
. venv/bin/activate
python setup.py unittests -d 7 -g ".*((LONG)|(SKIP)).*"
python setup.py unittests -d 15 -g ".*((LONG)|(SKIP)|(notebooks)).*"
# Some tests take for ever, cutting the list.

- run:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ install:
before_script:
- python setup.py build_ext --inplace
script:
- python setup.py unittests
- python setup.py unittests -g ".*((LONG)|(SKIP)|(notebooks)).*"
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from pyquickhelper.loghelper import fLOG
from pyquickhelper.ipythonhelper import test_notebook_execution_coverage
from pyquickhelper.pycode import (
add_missing_development_version, ExtTestCase
)
add_missing_development_version, ExtTestCase)
import mlprodict


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
from pyquickhelper.ipythonhelper import test_notebook_execution_coverage
from pyquickhelper.pycode import (
add_missing_development_version, ExtTestCase,
skipif_circleci
)
skipif_circleci)
import mlprodict


Expand All @@ -18,7 +17,7 @@ class TestNotebookOnnxNodeTime(ExtTestCase):
def setUp(self):
add_missing_development_version(["jyquickhelper"], __file__, hide=True)

@skipif_circleci("unexected issue, no benchmark is performed even it is asked")
@skipif_circleci("unexpected issue, no benchmark is performed even it is asked")
def test_notebook_onnx_time(self):
fLOG(
__file__,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from pyquickhelper.loghelper import fLOG
from pyquickhelper.ipythonhelper import test_notebook_execution_coverage
from pyquickhelper.pycode import (
add_missing_development_version, ExtTestCase
)
add_missing_development_version, ExtTestCase)
import mlprodict


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from pyquickhelper.loghelper import fLOG
from pyquickhelper.ipythonhelper import test_notebook_execution_coverage
from pyquickhelper.pycode import (
add_missing_development_version, ExtTestCase
)
add_missing_development_version, ExtTestCase)
import mlprodict


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class TestNotebookTransferLearning(ExtTestCase):
def setUp(self):
add_missing_development_version(["jyquickhelper"], __file__, hide=True)

def test_notebook_topk(self):
def test_notebook_transfer_learning(self):
fLOG(
__file__,
self._testMethodName,
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_test:
- "%PYTHON%\\python -u setup.py build_ext --inplace"

test_script:
- "%PYTHON%\\python -u setup.py unittests -d 50"
- "%PYTHON%\\python -u setup.py unittests -d 15 -g \".*((LONG)|(SKIP)|(notebooks)).*\""

after_test:
- "%PYTHON%\\python -u setup.py bdist_wheel"
Expand Down