File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 37
37
${{ runner.os }}-pip-
38
38
- name : Install the Python dependencies
39
39
run : |
40
- pip install -e .[test] codecov
40
+ pip install -e .[test]
41
41
pip install -r docs/doc-requirements.txt
42
42
wget https://github.com/jgm/pandoc/releases/download/1.19.1/pandoc-1.19.1-1-amd64.deb && sudo dpkg -i pandoc-1.19.1-1-amd64.deb
43
43
- name : List installed packages
Original file line number Diff line number Diff line change 37
37
${{ runner.os }}-pip-
38
38
- name : Install the Python dependencies
39
39
run : |
40
- pip install -e .[test] codecov
40
+ pip install -e .[test]
41
41
- name : List installed packages
42
42
run : |
43
43
pip freeze
48
48
- name : Run Integration Tests
49
49
run : |
50
50
pytest -v notebook/tests/test_notebookapp_integration.py --integration_tests
51
- - name : Coverage
52
- run : |
53
- codecov
Original file line number Diff line number Diff line change 1
1
import inspect
2
- from traitlets import ClassBasedTraitType , Undefined , warn
2
+ from warnings import warn
3
+ from traitlets import ClassBasedTraitType , Undefined
3
4
4
5
# Traitlet's 5.x includes a set of utilities for building
5
6
# description strings for objects. Traitlets 5.x does not
You can’t perform that action at this time.
0 commit comments