Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: CircleCI Test Collection Helper Space
|
| 3 |
+
sdk: gradio
|
| 4 |
+
emoji: 📊
|
| 5 |
+
colorTo: gray
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# CircleCI Test Collection Helper Space
|
| 9 |
+
|
| 10 |
+
This directory contains the code for a Hugging Face Space hosted at
|
| 11 |
+
[`transformers-community/circleci-test-collection-helper`](https://huggingface.co/spaces/transformers-community/circleci-test-collection-helper).
|
| 12 |
+
|
| 13 |
+
The Space reads aggregated CircleCI reports from the dataset
|
| 14 |
+
[`transformers-community/circleci-test-results`](https://huggingface.co/datasets/transformers-community/circleci-test-results)
|
| 15 |
+
and exposes a lightweight UI to search by repository, pull request number, or commit SHA.
|
| 16 |
+
|
| 17 |
+
## Environment variables
|
| 18 |
+
|
| 19 |
+
- `CIRCLECI_RESULTS_DATASET_ID` (optional): override the dataset to query. Defaults to
|
| 20 |
+
`transformers-community/circleci-test-results`.
|
| 21 |
+
|
| 22 |
+
## Local development
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
pip install -r requirements.txt
|
| 26 |
+
python app.py
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
Then open the printed local Gradio URL to inspect the UI.
|