-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5bb496
commit 9eab274
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,8 @@ jobs: | |
chrome-server: | ||
image: selenium/standalone-chrome:96.0 | ||
ports: | ||
- 4444:4444 | ||
|
||
steps: | ||
- name: Checkout code | ||
|
@@ -48,15 +50,15 @@ jobs: | |
env: | ||
RAILS_ENV: test | ||
DATABASE_URL: mysql2://test:[email protected]:3306/test | ||
SELENIUM_SERVER: chrome-server | ||
SELENIUM_SERVER: 127.0.0.1 | ||
run: | | ||
bundle exec rake db:reset | ||
bundle exec rake test TEST=test/models | ||
bundle exec rake test TEST=test/mailers | ||
# skip controllers for now due to random errors when running these tests with mysql | ||
#bundle exec rake test TEST=test/controllers | ||
bundle exec rake test:system | ||