Make observed_value_field optional in TFTInstanceSplitter #1617
Workflow file for this run
This file contains hidden or 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
name: Doctests | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
max-parallel: 4 | |
fail-fast: false | |
matrix: | |
python-version: ['3.11'] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install other dependencies | |
run: | | |
pip install -e . \ | |
-r requirements/requirements-test.txt \ | |
-r requirements/requirements-arrow.txt | |
- name: Test with pytest | |
run: | | |
pytest -n2 --doctest-modules \ | |
src/gluonts/core \ | |
src/gluonts/dataset \ | |
src/gluonts/model \ | |
src/gluonts/time_feature \ | |
src/gluonts/zebras \ | |
src/gluonts/maybe.py \ | |
src/gluonts/itertools.py |