mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-11 00:48:17 -05:00
* Bump cvxpy from 1.4.3 to 1.5.1 in /requirements Bumps [cvxpy](https://github.com/cvxpy/cvxpy) from 1.4.3 to 1.5.1. - [Release notes](https://github.com/cvxpy/cvxpy/releases) - [Commits](https://github.com/cvxpy/cvxpy/compare/v1.4.3...v1.5.1) --- updated-dependencies: - dependency-name: cvxpy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix cvxpy update issue --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Atsushi Sakai <asakai.amsl+github@gmail.com>
9 lines
254 B
Bash
Executable File
9 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "Run test suites! "
|
|
|
|
# === pytest based test runner ===
|
|
# -Werror: warning as error
|
|
# --durations=0: show ranking of test durations
|
|
# -l (--showlocals); show local variables when test failed
|
|
pytest tests -l -Werror --durations=0
|