You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/test.yaml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ jobs:
23
23
- name: Doing editable install
24
24
shell: bash -l {0}
25
25
run: |
26
-
test -f setup.py && pip install -e ".[dev]"
26
+
pip install -e ".[dev]"
27
27
28
28
- name: Check we are starting with clean git checkout
29
29
shell: bash -l {0}
@@ -37,27 +37,27 @@ jobs:
37
37
- name: Trying to strip out notebooks
38
38
shell: bash -l {0}
39
39
run: |
40
-
nbdev_clean
40
+
nbdev-clean
41
41
git status -s # display the status to see which nbs need cleaning up
42
42
if [[ `git status --porcelain -uno` ]]; then
43
43
git status -uno
44
-
echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev_install_hooks"
44
+
echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev-install_hooks"
45
45
echo -e "This error can also happen if you are using an older version of nbdev relative to what is in CI. Please try to upgrade nbdev with the command `pip install -U nbdev`"
46
46
false
47
47
fi
48
48
49
-
- name: Run nbdev_export
49
+
- name: Run nbdev-export
50
50
shell: bash -l {0}
51
51
run: |
52
-
nbdev_export
52
+
nbdev-export
53
53
if [[ `git status --porcelain -uno` ]]; then
54
-
echo "::error::Notebooks and library are not in sync. Please run nbdev_export."
54
+
echo "::error::Notebooks and library are not in sync. Please run nbdev-export."
0 commit comments