Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
37de80b
Add in dummy validation summary data and fix scatterplot axes
wesley-darling Aug 4, 2026
d75eb9b
rename regional flows summaries to be more descriptive
wesley-darling Aug 4, 2026
d905835
Add RMSPE equation and update calculation notes
wesley-darling Aug 4, 2026
4ebb979
Made best fit line details a hover feature
wesley-darling Aug 4, 2026
fa180fc
replace ^2 with superscript 2; put run name inside scatterplot hover …
wesley-darling Aug 4, 2026
9234a4d
Added label wrapping for long run names; unbolded run name in scatter…
wesley-darling Aug 4, 2026
d543222
make sidebar in export collapsible
wesley-darling Aug 4, 2026
37b51f3
remove theme toggle
wesley-darling Aug 4, 2026
83d8c7e
Merge branch 'export-collapsible-sidebar' into final-validation-cleanup
wesley-darling Aug 4, 2026
6dac8af
Add missing data cards on validation pages
wesley-darling Aug 4, 2026
a5d9497
Fixed bug with missing data card; fixed filter selectors so empty vis…
wesley-darling Aug 4, 2026
289febc
added more description to summary tables section of wiki; simplified …
wesley-darling Aug 5, 2026
7e8579b
Make pipeline cache refresh stage-aware and isolate skimjoin artifacts
wesley-darling Aug 5, 2026
da02be8
Update wiki
wesley-darling Aug 5, 2026
5a6950e
Simplify wiki and README language throughout
wesley-darling Aug 5, 2026
0ff64fb
Updated caching fingerprints to not recreate all summaries when segme…
wesley-darling Aug 5, 2026
4b1da85
fix bug with scatterplot sizing in exported html
wesley-darling Aug 5, 2026
577956d
Allow full matrix naming in skimjoin
wesley-darling Aug 6, 2026
9e2e7bb
add ebike rows to skim summary table
wesley-darling Aug 6, 2026
ed0f83a
Simplify CI tests, update workflow logging
wesley-darling Aug 6, 2026
e1b6302
Update language in wiki; fill out metro configs
wesley-darling Aug 6, 2026
2e55060
Add dashboard page user guide
wesley-darling Aug 6, 2026
a5d084d
Stand up metro configs; start work on standing up lcog and skats
wesley-darling Aug 7, 2026
fbdb463
stand up skats and lcog visualizers
wesley-darling Aug 10, 2026
5be64d5
Added optional logo for dashboards
wesley-darling Aug 10, 2026
badaf9d
Added Posit Connect instructions
wesley-darling Aug 10, 2026
773a836
Add fares to LCOG skim joining config
wesley-darling Aug 10, 2026
7b07bd0
Clarify summary weighting units
wesley-darling Aug 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 4 additions & 30 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@ on:
workflow_dispatch:

jobs:
pytest-fast:
pytest:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]

steps:
- name: Check out repo
Expand All @@ -21,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"

- name: Install uv
uses: astral-sh/setup-uv@v4
Expand All @@ -30,29 +26,7 @@ jobs:
run: uv sync --locked --group dev

- name: Run correctness lint
if: matrix.python-version == '3.12'
run: uv run ruff check .

- name: Run fast tests
run: uv run pytest --basetemp .pytest_tmp -m "not full_export"

pytest-full-export:
runs-on: windows-latest

steps:
- name: Check out repo
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Sync locked dependencies
run: uv sync --locked --group dev

- name: Run exhaustive export tests
run: uv run pytest --basetemp .pytest_tmp -m full_export
- name: Run tests
run: uv run pytest --basetemp .pytest_tmp
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,6 @@ plans/
/prepared_table_filter_example.ipynb
/scratch.ipynb
/test
/simor_project_outputs/

AGENTS.md
Loading
Loading