Skip to content

added topic-wise-user-embedding #527

added topic-wise-user-embedding

added topic-wise-user-embedding #527

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
full-tests:
name: Run the PyTest tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install environment
uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.29.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: test
activate-environment: true
- name: Install Node dependencies
run: |
npm ci
- name: Cache model data
uses: actions/cache@v4
with:
path: .dvc/cache
key: test-dvc-cache-${{ hashFiles('models/**.dvc') }}
- name: Fetch model data
run: |
dvc pull -R models tests
env:
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
- name: Run tests
run: |
python -m pytest -v
nodata-tests:
name: Run the PyTest tests without model data
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install environment
uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.29.0
cache: true
# just reuse cache from previous run of other test action
cache-write: false
environments: test
activate-environment: true
- name: Run tests
run: |
python -m pytest -v
env:
POPROX_CI_WITHOUT_DATA: 1