File tree 3 files changed +11
-7
lines changed
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ dist: xenial
5
5
install :
6
6
- pip install --pre -e '.[dev]'
7
7
script :
8
- - python -m unittest
8
+ - pytest
9
9
10
10
stages :
11
11
- pre-commit hooks
@@ -53,4 +53,4 @@ matrix:
53
53
secure : " WhUEch0YOZRtqr+r6BAd2KfgMY2IctHdoXNbl60qbyURjX3RzmICxB6GFHlAPkzu+b7GkY/WxKrAEa9NjjkHZ69M+x6ozORW4+YzicNVIgqxQkE65Su6l8zOCSexncMJrtmYceoxaRcX2Bsjy9r5fAv0gO6+WugOCAV6sZHkANqIjySTN82vAnla9/htWcesvw3JFckhdsPH/Lnu+o/hHKeM33vQUsJThQ73fatNuObyzglaoNu2L1PSjitI3wBA3jOpAL2o5v7bD/P7Krpu+YsGlaJNMHfHWkcNxypikZitCKcocoI7dWgQvSTqWA6TPV/MboRRF/2ZhnMKuw7ZY84GBx8Dyyw/len9s/1+m8kgu9ES1qJaIf03fvC60Uend2n2yk3sx6+rG1CCAvf21CJgMW+6XAqKpLI2tj0nPdBHvLGSdeRtTO5Ubpw8hDModlVai0RLhtYNkjLQkl+QrEehm2x/zhrP7gCudXQsKx8jvHHF70/pCN/WlvUhR42HEqWsPg7ZahkWi7YkFVY7e846ScxbWKjFL1s6vyCZso5U9DdUBvVEinshLoSZSbXotF4oHqdyKf17Hk0P6dPn/ocxGRB5rWWn5irhtEqcxZFKgawO8N1GYnTF64YewvO3O5gNqXrbpwCSScOrvDKDRosAWQ0yB/71ZvUEEcaYiFw="
54
54
on :
55
55
tags : true
56
- all_branches : true
56
+ all_branches : true
Original file line number Diff line number Diff line change 18
18
':python_version == "3.6"' : ["dataclasses" ],
19
19
"lint" : ["pre-commit~=1.18" ],
20
20
"docs" : ["sphinx" ],
21
- # typed-ast (a dependency of mypy) fails to install on pypy: https://github.com/python/typed_ast/issues/111
22
- "tests" : ["mypy; implementation_name != 'pypy'" ],
21
+ "tests" : [
22
+ "pytest" ,
23
+ # typed-ast (a dependency of mypy) fails to install on pypy
24
+ # https://github.com/python/typed_ast/issues/111
25
+ "mypy; implementation_name != 'pypy'" ,
26
+ ],
23
27
}
24
28
EXTRAS_REQUIRE ["dev" ] = (
25
29
EXTRAS_REQUIRE ["enum" ]
Original file line number Diff line number Diff line change 2
2
3
3
## How to run
4
4
In the project root, install dependencies and then run:
5
-
5
+
6
6
``` bash
7
- python3 -m unittest
8
- ```
7
+ pytest
8
+ ```
You can’t perform that action at this time.
0 commit comments