-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
63 lines (56 loc) · 1.23 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% set name = "pytest-bdd" %}
{% set version = "3.1.0" %}
{% set file_ext = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash_value = "17dfc2b65c275641a4e76fa1f913ab737604815c275dc2afe7133956c6ab6743" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.{{ file_ext }}'
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
'{{ hash_type }}': '{{ hash_value }}'
build:
number: 0
entry_points:
- pytest-bdd = pytest_bdd.scripts:main
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python=3.6
- setuptools
- glob2
- mako
- parse
- parse_type
- py
- pytest >=3.0.0
- six >=1.9.0
run:
- python=3.6
- setuptools
- glob2
- mako
- parse
- parse_type
- py
- pytest >=3.0.0
- six >=1.9.0
test:
imports:
- pytest_bdd
commands:
- pytest-bdd --help
requires:
- tox
about:
home: https://github.com/pytest-dev/pytest-bdd
license: MIT License
license_family: MIT
license_file: ''
summary: BDD for pytest
description: ""
doc_url: ''
dev_url: ''
extra:
recipe-maintainers: ''