Skip to content

Commit

Permalink
fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaberezovskyi committed Aug 30, 2023
1 parent 0b4ce96 commit 364fef0
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/Run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,31 @@ on: push

jobs:
test:
runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v2
with:
python-version: "3.10"

- name: Install Chrome
run: sudo apt-get install google-chrome-stable
run: |
brew install --cask google-chrome
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install --upgrade pytest pytest-html
- name: Set execute permissions for macchrome
run: |
chmod +x resources/macchrome
- name: Run tests
run:
run: |
python -m pytest



0 comments on commit 364fef0

Please sign in to comment.