From 77e42a1c1a45546df5f48bb3e092e0c2e8c1698f Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Mon, 27 Nov 2023 20:24:27 +0100 Subject: [PATCH] add some documentation --- .gitignore | 1 + python/README.md | 10 ++++++++++ rust/README.md | 9 +++++++++ 3 files changed, 20 insertions(+) create mode 100644 python/README.md create mode 100644 rust/README.md diff --git a/.gitignore b/.gitignore index c17efe5..590e96c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ __pycache__ *.lock +target diff --git a/python/README.md b/python/README.md new file mode 100644 index 0000000..ce664eb --- /dev/null +++ b/python/README.md @@ -0,0 +1,10 @@ +# Test Python Tooling + +The current test does + +- create a VM with poetry +- fetch python eggs (requests, pytest) +- do an https request (to google) to ensure certificates can be found +- and of course run python version 3.11 or later + + diff --git a/rust/README.md b/rust/README.md new file mode 100644 index 0000000..56dd565 --- /dev/null +++ b/rust/README.md @@ -0,0 +1,9 @@ +# Check Rust Tooling + +## Small cargo project + +- test cargo and rustc are installed +- check the default toolchain +- build and run a test executable + +