Skip to content

Commit 79ac61a

Browse files
first commit
0 parents  commit 79ac61a

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# brew install python3
2+
3+
# brew postinstall python3 #pip3 installation
4+
5+
# pip3 install -r requirements.txt
6+

mypy.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[mypy]
2+
python_version = 3.6
3+
warn_return_any = True
4+
warn_unused_configs = True
5+
ignore_missing_imports = True
6+
warn_unused_ignores = True
7+
show_error_codes = True
8+
show_column_numbers = True
9+
pretty = True
10+
color_output = True
11+
error_summary = True
12+
show_absolute_path = True
13+
show_traceback = True
14+
raise_exceptions = True
15+
html_report = html_report
16+
txt_report = txt_report
17+
verbosity = 50

requirements.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pytest==5.3.2
2+
selenium==3.141.0
3+
pytest-cov==2.8.1
4+
pytest-metadata==1.8
5+
pytest-html==2.0.1
6+
pytest-clarity==0.2.0a1
7+
pytest-xdist==1.31.0
8+
lxml==4.4.2
9+
allure-pytest==2.8.6

0 commit comments

Comments
 (0)