File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ Please see the full details over the test suite implementation on the [unittest-
109109This demo project requires the following dependencies.
110110
1111111 . RDP Access credentials.
112- 2 . Python [ Anaconda ] ( https://www.anaconda.com/distribution/ ) or [ MiniConda ] ( https://docs.conda.io/en/latest/miniconda.html ) distribution/package manager.
112+ 2 . [ Python ] ( https://www.python.org/ ) 3.10 and above
1131133 . [ Docker Desktop/Engine] ( https://docs.docker.com/get-docker/ ) application for running the test suite with Docker.
1141145 . Internet connection.
115115
@@ -123,13 +123,13 @@ The first step is to unzip or download the example project folder into a directo
123123### <a id =" python_example_run " ></a >Run example test suite in a console
124124
1251251 . Open Anaconda Prompt and go to the project's folder.
126- 2 . Run the following command in the Anaconda Prompt application to create a Conda environment named * http_unittest* for the project.
126+ 2 . Run the following command in the Command Prompt application to create a Python Virtual environment named * http_unittest* for the project.
127127 ```
128- (base) $>conda create --name http_unittest python=3.9
128+ $>python -m venv http_unittest
129129 ```
130- 3. Once the environment is created, activate a Conda *http_unittest* environment with this command in Anaconda Prompt .
130+ 3. Once the environment is created, activate a virtual environment *http_unittest* environment with this command .
131131 ```
132- (base) $>conda activate http_unittest
132+ $> http_unittest\Script\activate
133133 ```
1341344. Run the following command to the dependencies in the *http_unittest* environment
135135 ```
You can’t perform that action at this time.
0 commit comments