-
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
2938bae
commit edb8f88
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -34,10 +34,10 @@ jobs: | |
RAILS_ENV: test | ||
DATABASE_URL: sqlite3:db/test.sqlite3 | ||
run: | | ||
rails db:reset | ||
rails db:seed | ||
#rails test -v | ||
rails test:system TESTOPTS="-v" | ||
bundle exec rails db:reset | ||
bundle exec rails db:seed | ||
#bundle exec rails test -v | ||
bundle exec rails test:system TESTOPTS="-v" | ||
( cd /home/runner/work/etd/etd/tmp/test-screenshots && tar cvf ../sqlite3-test-screenshots.tar . ) || true | ||
- name: Upload sqlite3 test artifacts | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -51,10 +51,10 @@ jobs: | |
RAILS_ENV: test | ||
DATABASE_URL: mysql2://test:[email protected]:3306/test | ||
run: | | ||
rails db:reset | ||
rails db:seed | ||
#rails test -v | ||
rails test:system TESTOPTS="-v" | ||
bundle exec rails db:reset | ||
bundle exec rails db:seed | ||
#bundle exec rails test -v | ||
bundle exec rails test:system TESTOPTS="-v" | ||
( cd /home/runner/work/etd/etd/tmp/test-screenshots && tar cvf ../mysql-test-screenshots.tar . ) || true | ||
- name: Upload mysql test artifacts | ||
uses: actions/upload-artifact@v3 | ||
|