Skip to content

Commit

Permalink
Manually specify chromedriver port number in Github actions (#7209)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-yz-liu authored and pretendWhale committed Sep 27, 2024
1 parent 247636f commit 70c4a65
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,13 @@ jobs:
- name: Install chromedriver
uses: nanasess/setup-chromedriver@v2
- name: Run chromedriver
run: chromedriver --whitelisted-ips &
run: chromedriver --port=9515 --whitelisted-ips &
- name: Run rspec tests
run: |
bundle exec rspec
bundle exec rspec spec/system
run: bundle exec rspec
env:
MARKUS__PYTHON: ./venv/bin/python3
- name: Run rspec system tests
run: bundle exec rspec spec/system
env:
MARKUS__PYTHON: ./venv/bin/python3
- name: Coveralls Parallel (rspec)
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
- Allow instructors to assign graders by section (#7179)

### 🐛 Bug fixes

- Fix JSON/CSV summary of test results to always be inline with latest test run (#7214)
- Allow annotations to be added to results with released peer reviews (#7222)

### 🔧 Internal changes

- Manually specify chromedriver port number in Github actions (#7209)

## [v2.5.1]

### 🐛 Bug fixes
Expand Down

0 comments on commit 70c4a65

Please sign in to comment.