mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-27 20:02:30 +00:00
* Add progress bar callback and argument * Update doc * Update changelog * Upgrade pytype in docker image * Use tqdm.write in the logger to have cleaner output * Fix logger test * Fix when doing multiple calls to learn() * Address comments from code-review
23 lines
464 B
YAML
23 lines
464 B
YAML
image: stablebaselines/stable-baselines3-cpu:1.4.1a0
|
|
|
|
type-check:
|
|
script:
|
|
- pip install pytype --upgrade
|
|
- make type
|
|
|
|
pytest:
|
|
script:
|
|
- pip install tqdm rich # for progress bar
|
|
- python --version
|
|
# MKL_THREADING_LAYER=GNU to avoid MKL_THREADING_LAYER=INTEL incompatibility error
|
|
- MKL_THREADING_LAYER=GNU make pytest
|
|
coverage: '/^TOTAL.+?(\d+\%)$/'
|
|
|
|
doc-build:
|
|
script:
|
|
- make doc
|
|
|
|
lint-check:
|
|
script:
|
|
- make check-codestyle
|
|
- make lint
|