We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62e6c5f commit 7017512Copy full SHA for 7017512
1 file changed
.github/workflows/conan.yml
@@ -33,13 +33,16 @@ jobs:
33
architecture: x64
34
35
- name: Clone conan client
36
- run: git clone --depth 1 https://github.com/conan-io/conan.git
+ run: |
37
+ git clone --depth 1 https://github.com/conan-io/conan.git
38
+ cd conan/
39
+ pip install -r conans/requirements_dev.txt
40
+ pip install -r conans/requirements.txt
41
42
- name: Run Conan client tests involving patch-ng
43
run: |
44
+ pip install -e .
45
cd conan/
- pip install -r conans/requirements_dev.txt
46
pytest -v test/functional/test_third_party_patch_flow.py
47
pytest -v test/functional/tools/test_files.py
48
pytest -v test/unittests/tools/files/test_patches.py
-
0 commit comments