stable-baselines3/.gitlab-ci.yml
Antonin RAFFIN 7c21b79188
Add progress bar callback and argument (#1095)
* 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
2022-10-06 18:17:31 +02:00

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