From 73453b571843abacd93d33b36d4c2ec39a329b19 Mon Sep 17 00:00:00 2001 From: Jonathan Woollett-Light Date: Mon, 18 Sep 2023 15:28:44 +0100 Subject: [PATCH] cargo-semver-checks Signed-off-by: Jonathan Woollett-Light --- integration_tests/test_semver.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 integration_tests/test_semver.py diff --git a/integration_tests/test_semver.py b/integration_tests/test_semver.py new file mode 100644 index 0000000..eced35c --- /dev/null +++ b/integration_tests/test_semver.py @@ -0,0 +1,9 @@ +import subprocess + +def test_semver(): + """ + Checks crates meet semver + """ + + subprocess.run("cargo install cargo-semver-checks") + subprocess.run("cargo semver-checks", check=True) \ No newline at end of file