From ab869bcd6188bf729e4196c8254a7656c54d335a Mon Sep 17 00:00:00 2001 From: Nikhil Woodruff <35577657+nikhilwoodruff@users.noreply.github.com> Date: Tue, 23 Apr 2024 02:04:42 +0100 Subject: [PATCH] Add reweighting tests --- .github/workflows/pr.yml | 17 ++++++++++++++++- .github/workflows/push.yml | 15 +++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 81937265..d96a3a92 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -16,7 +16,7 @@ jobs: with: options: ". -l 79 --check" test: - name: Test + name: Main tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -30,4 +30,19 @@ jobs: run: make test-lite env: POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}} + test_reweight: + name: Full tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 + - name: Install dependencies + run: make install + - name: Run tests + run: make test + env: + POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}} diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6cebe6bb..e7c6c550 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -33,3 +33,18 @@ jobs: run: make test-lite env: POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}} + test_reweight: + name: Full tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 + - name: Install dependencies + run: make install + - name: Run tests + run: make test + env: + POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}}