aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-01-14 22:42:20 -0700
committerOndřej Čertík <ondrej@certik.us>2020-01-14 22:42:20 -0700
commit8732516d55b2b07682bf40a242ba523fe3864238 (patch)
tree54d2eb1455f48485a90a17aff7af139175a8b21b
parent69949a5ff1fd38ccb8080c424bb14a59bc718757 (diff)
downloadfpm-8732516d55b2b07682bf40a242ba523fe3864238.tar.gz
fpm-8732516d55b2b07682bf40a242ba523fe3864238.zip
Remove manual tests
Use "cargo test" instead.
-rw-r--r--.github/workflows/CI.yml7
-rwxr-xr-xrun_tests.sh15
2 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index a27a108..0c8ad35 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -65,10 +65,3 @@ jobs:
- name: Run tests
run: |
cargo test --verbose -j1
-
- # TODO: integrate these with `cargo test` above
- - name: Run manual tests
- if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
- run: |
- cargo run -- --help
- ./run_tests.sh
diff --git a/run_tests.sh b/run_tests.sh
deleted file mode 100755
index 8a517cc..0000000
--- a/run_tests.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-set -ex
-
-fpm=$(pwd)/target/debug/fpm
-
-cd tests/1
-${fpm} build
-${fpm} run
-cd ../..
-
-cd tests/2
-${fpm} build
-${fpm} run
-cd ../..