Skip to content

Commit 772ceaa

Browse files
authored
More CI Cleanup (#886)
1 parent cebcdc5 commit 772ceaa

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defaults:
1616

1717

1818
jobs:
19-
pre-commit:
19+
pre_commit:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v3
@@ -98,7 +98,6 @@ jobs:
9898
only_create_file: 1
9999
- name: Run the unit tests
100100
run: |
101-
export PIP_CONSTRAINT="./contraints_file.txt"
102101
hatch run test:nowarn || hatch run test:nowarn --lf
103102
104103
test_prereleases:
@@ -110,8 +109,7 @@ jobs:
110109
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
111110
- name: Run the tests
112111
run: |
113-
export PIP_PRE=1
114-
hatch run test:nowarn || hatch run test:nowarn --lf
112+
PIP_PRE=1 hatch run test:nowarn || hatch run test:nowarn --lf
115113
116114
make_sdist:
117115
name: Make SDist
@@ -140,7 +138,7 @@ jobs:
140138
- docs
141139
- check_links
142140
- test_minimum_verisons
143-
- pre-commit
141+
- pre_commit
144142
- test_prereleases
145143
- test_sdist
146144
runs-on: ubuntu-latest

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Jupyter Client
22

33
[![Build Status](https://github.com/jupyter/jupyter_client/workflows/CI/badge.svg)](https://github.com/jupyter/jupyter_client/actions)
4-
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
4+
[![codecov](https://codecov.io/gh/jupyter/jupyter_client/branch/main/graph/badge.svg?token=kxoFu4KnhT)](https://codecov.io/gh/jupyter/jupyter_client)
5+
[![Documentation Status](https://readthedocs.org/projects/jupyter-client/badge/?version=latest)](http://jupyter-client.readthedocs.io/en/latest/?badge=latest)
56

67
`jupyter_client` contains the reference implementation of the [Jupyter protocol].
78
It also provides client and kernel management APIs for working with kernels.

0 commit comments

Comments
 (0)