ArthurZ HF Staff commited on
Commit
e50e941
·
verified ·
1 Parent(s): 1cf02c3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -13
README.md CHANGED
@@ -1,13 +1,22 @@
1
- ---
2
- title: Circle Ci Viz
3
- emoji: 📊
4
- colorFrom: purple
5
- colorTo: indigo
6
- sdk: gradio
7
- sdk_version: 5.49.1
8
- app_file: app.py
9
- pinned: false
10
- short_description: Helps visualize cricle ci tests
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
1
+ # CircleCI Test Collection Helper Space
2
+
3
+ This directory contains the code for a Hugging Face Space hosted at
4
+ [`transformers-community/circleci-test-collection-helper`](https://huggingface.co/spaces/transformers-community/circleci-test-collection-helper).
5
+
6
+ The Space reads aggregated CircleCI reports from the dataset
7
+ [`transformers-community/circleci-test-results`](https://huggingface.co/datasets/transformers-community/circleci-test-results)
8
+ and exposes a lightweight UI to search by repository, pull request number, or commit SHA.
9
+
10
+ ## Environment variables
11
+
12
+ - `CIRCLECI_RESULTS_DATASET_ID` (optional): override the dataset to query. Defaults to
13
+ `transformers-community/circleci-test-results`.
14
+
15
+ ## Local development
16
+
17
+ ```bash
18
+ pip install -r requirements.txt
19
+ python app.py
20
+ ```
21
+
22
+ Then open the printed local Gradio URL to inspect the UI.