Skip to content

Commit

Permalink
docs: document testing var
Browse files Browse the repository at this point in the history
  • Loading branch information
braindigitalis committed Oct 25, 2024
1 parent 2f551a8 commit 8ab2572
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ def export(self):
git.coordinates_to_conandata()

def source(self):
# This environment variable should only be set by D++ library developers to ensure that conan builds succeed
# without having to wait for release. It will check out the development branch where conanfile.py is being

Check notice on line 52 in conanfile.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

conanfile.py#L52

Trailing whitespace
# developed and tested. If you are NOT sure what this does, DO NOT SET IT. You won't get the D++ release
# you expect!
if 'DPP_CONAN_TESTING' in os.environ:
git = Git(self)
git.clone(url="https://github.com/brainboxdotcc/DPP.git", target=".")
Expand Down

0 comments on commit 8ab2572

Please sign in to comment.