Skip to content

Commit c7a5474

Browse files
authored
Merge branch 'main' into estimation_enhancements
2 parents 618341a + e345f97 commit c7a5474

18 files changed

Lines changed: 2124 additions & 41 deletions

File tree

.github/workflows/core_tests.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,39 @@ jobs:
398398
run: |
399399
uv run pytest activitysim/estimation/test/test_edb_creation/test_edb_formation.py --durations=0
400400
401+
expression-profiling:
402+
needs: foundation
403+
env:
404+
python-version: "3.10"
405+
label: win-64
406+
defaults:
407+
run:
408+
shell: pwsh
409+
name: Expression Profiling Tests
410+
runs-on: windows-latest
411+
steps:
412+
- uses: actions/checkout@v4
413+
414+
- name: Install uv
415+
uses: astral-sh/setup-uv@v5
416+
with:
417+
version: "0.7.12"
418+
enable-cache: true
419+
cache-dependency-glob: "uv.lock"
420+
421+
- name: "Set up Python"
422+
uses: actions/setup-python@v5
423+
with:
424+
python-version-file: ".python-version"
425+
426+
- name: Install activitysim
427+
run: |
428+
uv sync --locked --only-group github-action
429+
430+
- name: Test Expression Profiling
431+
run: |
432+
uv run pytest test/test_expression_profiling.py
433+
401434
develop-docbuild:
402435
needs: foundation
403436
if: github.ref_name == 'main' || github.ref_name == 'docs-fix'

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ coverage.xml
4949
.project
5050
.pydevproject
5151

52+
# ides
53+
.vscode/
54+
5255
# Rope
5356
.ropeproject
5457

0 commit comments

Comments
 (0)