Skip to content

Commit

Permalink
Add instructions for venv
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayima Okeyeva committed Jan 12, 2025
1 parent 4b0402f commit eb7b348
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/selenium-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
with:
python-version: '3.10'

- name: Set up virtual environment
run: |
python -m venv venv
# On Windows use `venv\Scripts\activate`
# On Linux/macOS use `source venv/bin/activate`
source venv/bin/activate
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -36,8 +43,8 @@ jobs:
- name: Install required dependencies
run: |
sudo apt-get update
# sudo apt-get install -y libgconf-2-4 libasound2
sudo apt-get update
sudo apt-get upgrade
- name: Set up Chrome and ChromeDriver
uses: browser-actions/setup-chrome@v1
Expand Down

0 comments on commit eb7b348

Please sign in to comment.