diff --git a/docs/dev/PR_Header_example.png b/docs/dev/PR_Header_example.png new file mode 100644 index 000000000..3ac82460f Binary files /dev/null and b/docs/dev/PR_Header_example.png differ diff --git a/docs/dev/testing.md b/docs/dev/testing.md index 5914f05d2..f2182c0c4 100644 --- a/docs/dev/testing.md +++ b/docs/dev/testing.md @@ -58,3 +58,20 @@ If the test is a regression test, write If the regression test is just one parameter of other tests, then add it as a comment for that parameter. + +## Evaluate a PR in-progress version + +You may want to test a version from a PR which has not been released yet. +the easiest way is to use pip and install a version from git: + +a) go the PR and identify the repo and branch. + +Example from below : repo: __pubpub-zz__ / branch: __iss2200__ : +![PR Header example](PR_Header_example.png) + +b) you can then install the version using pip from git: + +example: +``` +pip install pip install git+https://github.com/pubpub-zz/pypdf.git@iss2200 +```