Skip to content

Commit c54cdc7

Browse files
committed
tests: conda updates
1 parent 258536b commit c54cdc7

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

conda.recipe/meta.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ build:
1212
script_env:
1313
- CC
1414
- CXX
15-
script: {{ PYTHON }} -m pip install . -vvv
15+
script: |
16+
{{ PYTHON }} -m pip install -vvv "git+https://github.com/pybind/pybind11.git@master"
17+
{{ PYTHON }} -m pip install . -vvv --no-deps
18+
{{ PYTHON }} -m pip uninstall -y pybind11
1619
1720
requirements:
1821
build:
1922
- {{ compiler('cxx') }}
2023
- vs2017_{{ target_platform }} # [win]
24+
- cmake
2125

2226
host:
2327
- python
@@ -37,7 +41,7 @@ test:
3741
requires:
3842
- pytest
3943
commands:
40-
- pytest .
44+
- pytest
4145

4246
about:
4347
summary: An example project built with pybind11.

tests/test.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import python_example as m
22

3-
assert m.__version__ == '0.0.1'
4-
assert m.add(1, 2) == 3
5-
assert m.subtract(1, 2) == -1
3+
def my_simple_test():
4+
assert m.__version__ == '0.0.1'
5+
assert m.add(1, 2) == 3
6+
assert m.subtract(1, 2) == -1

0 commit comments

Comments
 (0)