Skip to content

Commit 9a29fb8

Browse files
committed
run styling
1 parent d786477 commit 9a29fb8

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

DEVELOPING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ npm run build
222222
```
223223

224224
- **Integration+Unit tests with coverage**:
225+
225226
```bash
226227
npm run coverage
227228
```
@@ -254,9 +255,7 @@ npm run build
254255

255256
##### Tagging Tests
256257

257-
Reference [https://www.npmjs.com/package/jest-runner-groups](jest-runner-groups)
258-
Add @group with the tag in a docblock at the top of the test file to indicate which types of tests are contained within.
259-
Can't distinguish between different types of tests in the same file.
258+
Reference [https://www.npmjs.com/package/jest-runner-groups](jest-runner-groups) Add @group with the tag in a docblock at the top of the test file to indicate which types of tests are contained within. Can't distinguish between different types of tests in the same file.
260259

261260
```
262261
/**

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,7 @@ https://neuralmagic.github.io/guidellm/ui/dev/
169169

170170
Open the file in your browser and you're done—no setup required.
171171

172-
2. Build and Serve the UI Locally (For Development)
173-
This option is useful if:
172+
2. Build and Serve the UI Locally (For Development) This option is useful if:
174173

175174
- You are actively developing the UI
176175

src/guidellm/benchmark/benchmark.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -815,10 +815,7 @@ def from_stats(
815815
req.first_token_time or req.start_time
816816
for req in total_with_output_first
817817
],
818-
iter_counts=[
819-
req.output_tokens
820-
for req in total_with_output_first
821-
],
818+
iter_counts=[req.output_tokens for req in total_with_output_first],
822819
first_iter_counts=[
823820
req.prompt_tokens for req in total_with_output_first
824821
],

0 commit comments

Comments
 (0)