-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from camsys/extended-testing
GitHub Actions testing
- Loading branch information
Showing
32 changed files
with
277 additions
and
48,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Implementation Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
env: | ||
CACHE_NUMBER: 0 # increase to reset cache manually | ||
|
||
jobs: | ||
foundation: | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.10"] | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
name: linux-64-py${{ matrix.python-version }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
# checkout the code in this repository | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: 'activitysim-prototype-mtc' | ||
|
||
# checkout the main branch of ActivitySim itself | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: 'ActivitySim/activitysim' | ||
ref: main | ||
path: 'activitysim' | ||
fetch-depth: 0 # get all tags, lets setuptools_scm do its thing | ||
|
||
- name: Setup Mambaforge | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
miniforge-variant: Mambaforge | ||
miniforge-version: latest | ||
activate-environment: asim-test | ||
use-mamba: true | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Set cache date for year and month | ||
run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: /usr/share/miniconda3/envs/asim-test | ||
key: linux-64-conda-${{ hashFiles('activitysim/conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} | ||
id: cache | ||
|
||
- name: Update environment | ||
run: | | ||
mamba env update -n asim-test -f activitysim/conda-environments/github-actions-tests.yml | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
|
||
- name: Install activitysim | ||
# installing without dependencies is faster, we trust that all needed dependencies | ||
# are in the conda environment defined above. Also, this avoids pip getting | ||
# confused and reinstalling tables (pytables). | ||
run: | | ||
python -m pip install ./activitysim --no-deps | ||
- name: Conda checkup | ||
run: | | ||
mamba info -a | ||
mamba list | ||
- name: Test this implementation | ||
run: | | ||
python -m pytest activitysim-prototype-mtc/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,6 @@ SIMULATE_CHOOSER_COLUMNS: | |
- num_escort_tours | ||
- num_non_escort_tours | ||
- adult | ||
|
||
compute_settings: | ||
use_numexpr: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ MAX_ITERATIONS: 100 | |
#FAILFIX: drop_and_cleanup | ||
FAILFIX: choose_most_initial | ||
|
||
logic_version: 2 |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.