Skip to content

Add tests for _prepare_registration function #137

Add tests for _prepare_registration function

Add tests for _prepare_registration function #137

Workflow file for this run

name: Integration Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
squid:
image: ubuntu/squid:latest
ports:
- 3128:3128
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
PORT: 8080
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'
- name: Run Dataverse Action
id: dataverse
uses: gdcc/dataverse-action@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install poetry
poetry install --with test
- name: Test with pytest
env:
API_TOKEN: ${{ steps.dataverse.outputs.api_token }}
BASE_URL: ${{ steps.dataverse.outputs.base_url }}
DVUPLOADER_TESTING: 'true'
TEST_ROWS: 100000
run: |
python3 -m poetry run pytest