summaryrefslogtreecommitdiffstats
path: root/vendor/pretty_assertions-0.7.2/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/pretty_assertions-0.7.2/scripts')
-rwxr-xr-xvendor/pretty_assertions-0.7.2/scripts/check9
-rwxr-xr-xvendor/pretty_assertions-0.7.2/scripts/install6
-rwxr-xr-xvendor/pretty_assertions-0.7.2/scripts/publish11
3 files changed, 0 insertions, 26 deletions
diff --git a/vendor/pretty_assertions-0.7.2/scripts/check b/vendor/pretty_assertions-0.7.2/scripts/check
deleted file mode 100755
index 43fb3a9b3..000000000
--- a/vendor/pretty_assertions-0.7.2/scripts/check
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-set -exuo pipefail
-
-cargo fmt -- --check
-cargo audit --deny warnings
-cargo clippy --all-targets -- -D warnings
-cargo test
-cargo doc --no-deps
diff --git a/vendor/pretty_assertions-0.7.2/scripts/install b/vendor/pretty_assertions-0.7.2/scripts/install
deleted file mode 100755
index 92577640c..000000000
--- a/vendor/pretty_assertions-0.7.2/scripts/install
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-set -exuo pipefail
-
-rustup component add rustfmt clippy
-cargo install cargo-audit cargo-tarpaulin
diff --git a/vendor/pretty_assertions-0.7.2/scripts/publish b/vendor/pretty_assertions-0.7.2/scripts/publish
deleted file mode 100755
index e904f03eb..000000000
--- a/vendor/pretty_assertions-0.7.2/scripts/publish
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-set -euxo pipefail
-
-# Don't log the cargo login token while authenticating
-set +x
-echo "cargo login ***********************************"
-cargo login "${CARGO_LOGIN_TOKEN}"
-set -x
-
-cargo publish