Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 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
219abb1
add category mapping to prepare step
wesley-darling Aug 25, 2026
6824d33
add adapters for raw statewide survey
wesley-darling Aug 25, 2026
729710b
Add simor scenario run script and memory lock; update configs
wesley-darling Aug 25, 2026
4fffe6c
Fix bug with mandatory location distance caching
wesley-darling Aug 25, 2026
2a4ea21
added hypothetical skims as a prepared table option to fix bug in com…
wesley-darling Aug 25, 2026
2273324
Optimize hypothetical skimjoin diagnostics path
wesley-darling Aug 25, 2026
e3824d7
Build hypothetical sidecars from long lookup values
wesley-darling Aug 25, 2026
e42bce7
Stream hypothetical sidecars by mode
wesley-darling Aug 25, 2026
413ddbf
Revert "Stream hypothetical sidecars by mode"
wesley-darling Aug 25, 2026
a7a8404
Stream CSV skim inventory
wesley-darling Aug 25, 2026
dfe763e
Share streamed CSV skim caches
wesley-darling Aug 25, 2026
2a4ddcd
Filter CSV skims to demanded OD pairs
wesley-darling Aug 25, 2026
c56e71f
Updated KPI units; crrecting mapping labelings, fixed escorted tour s…
wesley-darling Aug 25, 2026
74f15c4
updated decimal places; added Loop purpose; added mean non-zero.
wesley-darling Aug 25, 2026
bcceb8f
allow for optional summaries to be added
wesley-darling Aug 25, 2026
a69d044
Merge skimjoin fast-path cleanup
wesley-darling Aug 26, 2026
598a138
updated mandatory trip calculations to exclude external and WFH worke…
wesley-darling Aug 26, 2026
c047313
Add run-specific skimjoin enable/disable, update decimal places, othe…
wesley-darling Aug 26, 2026
266b836
Update DAP calculation and daily trip rate summary fns
wesley-darling Aug 26, 2026
7d5ffe4
Fixed joint tour frequency and DAP bug to correctly expand tours base…
wesley-darling Aug 27, 2026
086971f
add --no-skimjoin run option for testing
wesley-darling Aug 27, 2026
229cdca
Update wiki
wesley-darling Aug 28, 2026
6dd18ef
fix links to quick start guide
wesley-darling Aug 28, 2026
4b6710a
Override user-profile paths w/ generics
americalexander Aug 28, 2026
af3cca4
Fix bug with no skimjoin option in scenario runner
wesley-darling Aug 28, 2026
e5d5093
Created Processor outputs reference for user guide
wesley-darling Aug 28, 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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,10 @@ plans/
/prepared_table_filter_example.ipynb
/scratch.ipynb
/test
/simor_project_outputs/

AGENTS.md

.agents/
old_r_based_visualizer/
outside_summary_tables/
Loading
Loading