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