You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-5
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
## Getting started
4
4
5
5
Before you begin:
6
-
- Python 3.8 is used for this project.
6
+
- Python 3.11 is used for this project.
7
7
- For EPAM employees only: have you read the [Best Practices for Managing Secrets](https://elearn.epam.com/courses/course-v1:EPAM+5SCSS+0620/courseware/4b94c749c309409ea878fb7916be316b/ae4553f7cd524229b42f260b0ac692ed/1?activate_block_id=block-v1%3AEPAM%2B5SCSS%2B0620%2Btype%40vertical%2Bblock%40c04f1498c7d04ac4bf87b652741d90bb)?
8
8
- Check out the [existing issues](https://github.com/jdi-testing/jdi-python/issues).
9
9
@@ -19,10 +19,6 @@ When you're done making changes, open your PR and get it reviewed.
19
19
20
20
In order to test the project, run pytest.
21
21
22
-
Please don't forget to set up the environment variable `TEST_PASSWORD`. For example:
23
-
24
-
For Windows `set TEST_PASSWORD=<password>`
25
-
26
22
```bash
27
23
pytest <path to the project>/tests --no-header --no-summary -q
Copy file name to clipboardExpand all lines: README.md
+14
Original file line number
Diff line number
Diff line change
@@ -4,3 +4,17 @@
4
4
5
5
# JDI 2.0
6
6
Powerful Framework for UI Automation Testing on Python
7
+
8
+
## Getting started
9
+
Before you begin:
10
+
- Python 3.11 is used for this project. To install Python on MacOs you can use [Homebrew](https://brew.sh/), on Windows you can use [Chocolatey](https://chocolatey.org/).
11
+
- run git clone https://github.com/jdi-testing/jdi-python.git or fork the repository and clone it afterwards.
12
+
- create a virtual environment for the project. You can use [virtualenv](https://virtualenv.pypa.io/en/latest/) or [venv](https://docs.python.org/3/library/venv.html) for that.
13
+
- set up Python interpreter to use Python 3.11 in your IDE.
14
+
- run `pip install -r requirements.txt` to install all required dependencies.
15
+
16
+
## You can simply run tests to see how it works
17
+
1. inside your IDE
18
+
2. using pytest
19
+
- activate your virtual environment by running `source venv/bin/activate` on MacOs or `venv\Scripts\activate` on Windows
0 commit comments