Skip to content

Commit

Permalink
Delete e2e testing crate now that it is unused
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Levick <[email protected]>
  • Loading branch information
rylev committed Jan 12, 2024
1 parent acd72af commit de651fe
Show file tree
Hide file tree
Showing 16 changed files with 6 additions and 1,031 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
**/target
**/node_modules
tests/testcases/*-generated
**/spin-plugin-update.lock
**/package-lock.json
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ main.wasm
.parcel-cache
.vscode/*.log
crates/**/Cargo.lock
tests/testcases/*-generated
spin-plugin-update.lock
package-lock.json
.spin
Expand Down
39 changes: 1 addition & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ hex = "0.4.3"
hyper = { workspace = true }
sha2 = "0.10.1"
which = "4.2.5"
e2e-testing = { path = "crates/e2e-testing" }
http-body-util = { workspace = true }
testing-framework = { path = "tests/testing-framework" }
hyper-util = { version = "0.1.2", features = ["tokio"] }
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ lint:
cargo clippy --all --all-targets --features all-tests -- -D warnings
cargo fmt --all -- --check

.PHONY: lint-rust-examples-and-testcases
lint-rust-examples-and-testcases:
for manifest_path in $$(find examples tests/testcases -name Cargo.toml); do \
.PHONY: lint-rust-examples
lint-rust-examples:
for manifest_path in $$(find examples -name Cargo.toml); do \
echo "Linting $${manifest_path}" \
&& cargo clippy --manifest-path "$${manifest_path}" -- -D warnings \
&& cargo fmt --manifest-path "$${manifest_path}" -- --check \
Expand All @@ -73,14 +73,14 @@ lint-rust-examples-and-testcases:
done

.PHONY: lint-all
lint-all: lint lint-rust-examples-and-testcases
lint-all: lint lint-rust-examples

## Bring all of the checked in `Cargo.lock` files up-to-date
.PHONY: update-cargo-locks
update-cargo-locks:
echo "Updating Cargo.toml"
cargo update -w --offline; \
for manifest_path in $$(find examples tests/testcases -name Cargo.toml); do \
for manifest_path in $$(find examples -name Cargo.toml); do \
echo "Updating $${manifest_path}" && \
cargo update --manifest-path "$${manifest_path}" -w --offline; \
done
Expand Down
21 changes: 0 additions & 21 deletions crates/e2e-testing/Cargo.toml

This file was deleted.

3 changes: 0 additions & 3 deletions crates/e2e-testing/README.md

This file was deleted.

78 changes: 0 additions & 78 deletions crates/e2e-testing/src/asserts.rs

This file was deleted.

85 changes: 0 additions & 85 deletions crates/e2e-testing/src/controller.rs

This file was deleted.

Loading

0 comments on commit de651fe

Please sign in to comment.