diff options
author | Daniel Mueller <deso@posteo.net> | 2019-01-04 16:30:33 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-01-04 16:30:33 -0800 |
commit | 1c765e345abbbb54f8bc533baebc8300685c4d05 (patch) | |
tree | 4e11bcb4825fd720f86ef3231eada71a07e4c6b0 | |
parent | d2c30bf5a212061c70f5ac2fded8a6519c4a2870 (diff) | |
download | nitrocli-1c765e345abbbb54f8bc533baebc8300685c4d05.tar.gz nitrocli-1c765e345abbbb54f8bc533baebc8300685c4d05.tar.bz2 |
Remove 'test' target from Makefile
A while ago we removed all device specific tests from the project as
part of the move to using the nitrokey crate. While adding additional
tests is a work in progress, the intention is to have them run solely by
issuing 'cargo test'.
In any case, this change removes the 'test' target from the Makefile as
it is no longer needed, because all tests can run concurrently just
fine.
-rw-r--r-- | nitrocli/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/nitrocli/Makefile b/nitrocli/Makefile index cc1ad3f..d87a09a 100644 --- a/nitrocli/Makefile +++ b/nitrocli/Makefile @@ -17,15 +17,6 @@ # * along with this program. If not, see <http://www.gnu.org/licenses/>. * # ***************************************************************************/ - -# We do not want to run the tests concurrently as the Nitrokey seems to -# have problems with that. We also do not want to introduce additional -# locking because in the normal program work flow we will not have -# multiple requests issued in parallel. -.PHONY: test -test: - @RUST_TEST_NOCAPTURE=1 RUST_TEST_THREADS=1 cargo test - PS2PDF ?= ps2pdf NITROCLI_MAN := doc/nitrocli.1 |