Skip to content

Commit 99bd704

Browse files
Copilotmsaroufim
andcommitted
Fix CI failures by registering missing blueprints and remove CI docs from README
Co-authored-by: msaroufim <[email protected]>
1 parent 3e6ba65 commit 99bd704

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,6 @@ these steps to run the test suite:
9090

9191
We would like to keep code coverage high, ideally above 90%.
9292

93-
## Continuous Integration
94-
95-
Tests run automatically in CI via GitHub Actions on all pull requests and pushes to main. The CI workflow runs:
96-
97-
- **Frontend tests**: React/TypeScript tests using Vitest (83 tests)
98-
- **Backend tests**: Python tests using pytest with Docker (42+ tests)
99-
- **Coverage reporting**: Code coverage analysis
100-
101-
See `.github/workflows/test.yml` for the complete CI configuration.
102-
10393
## Run the development server
10494

10595
Let's get the development server up and running! Use this command:

kernelboard/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ def unauthorized():
109109

110110
app.register_blueprint(health.blueprint)
111111
app.add_url_rule("/health", endpoint="health")
112-
113-
@app.route("/")
114-
def root():
115-
# permanent redirect
116-
return redirect("/v2", code=302)
112+
113+
# Register the main blueprints for backward compatibility and testing
114+
app.register_blueprint(index.blueprint)
115+
app.register_blueprint(leaderboard.blueprint)
116+
app.register_blueprint(news.blueprint)
117117

118118
if not app.blueprints.get("api"):
119119
api = create_api_blueprint()

0 commit comments

Comments
 (0)