diff --git a/Makefile b/Makefile index b5b243897..c81b0c954 100644 --- a/Makefile +++ b/Makefile @@ -58,6 +58,12 @@ include libs/gl-client/Makefile include libs/gl-client-py/Makefile include libs/gl-testing/Makefile +check-rs: + cargo test --all -- --test-threads=1 + +clean-rs: + cargo clean + check: check-rs check-py clean: clean-rs diff --git a/libs/gl-client/Makefile b/libs/gl-client/Makefile index 888cf0dd3..f8b4b7435 100644 --- a/libs/gl-client/Makefile +++ b/libs/gl-client/Makefile @@ -7,12 +7,6 @@ endif LIBS=${REPO}/libs GL_CLIENT_DIR=${LIBS}/gl-client -check-rs: - cd ${LIBS}; cargo test --all -- --test-threads=1 - -clean-rs: - cd ${LIBS}; cargo clean - check-gl-client: (cd ${GL_CLIENT_DIR}; cargo test)