From 90ad9cb6f60efff63b89550de39828add35ff6ae Mon Sep 17 00:00:00 2001 From: mcbarton <150042563+mcbarton@users.noreply.github.com> Date: Fri, 31 May 2024 10:19:20 +0100 Subject: [PATCH 1/2] Update pytest instructions in documentation --- CONTRIBUTING.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 07039393..cc507921 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,5 +55,5 @@ and the python tests by executing ```bash cd ./test -pytest -sv . +pytest -sv test_xcpp_kernel.py ``` \ No newline at end of file diff --git a/README.md b/README.md index d0101993..45fd27bb 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ cd test ``` and ```bash -pytest -sv . +pytest -sv test_xcpp_kernel.py ``` to perform the python tests. From 1511181df7d3fb9ce629ec7fa811a777f2cbe9aa Mon Sep 17 00:00:00 2001 From: mcbarton <150042563+mcbarton@users.noreply.github.com> Date: Sat, 1 Jun 2024 07:59:11 +0100 Subject: [PATCH 2/2] Address PR comments --- CONTRIBUTING.md | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cc507921..600c3997 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,6 +54,6 @@ cd ./test and the python tests by executing ```bash -cd ./test +cd ../../test pytest -sv test_xcpp_kernel.py ``` \ No newline at end of file diff --git a/README.md b/README.md index 45fd27bb..39d97d42 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ cd test ``` and ```bash +cd ../../test pytest -sv test_xcpp_kernel.py ``` to perform the python tests.