Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

feature: added tests #225

feature: added tests

feature: added tests #225

Workflow file for this run

name: test-xgboost
on: push
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: install-dependencies
run: |
python -m pip install --upgrade pip
pip install ".[tests]"
pip install "xgboost"
pip install --upgrade --no-deps --force-reinstal https://github.com/dream-faster/fold/archive/main.zip
- name: run-tests
run: pytest tests/test_xgboost.py -s --durations 0