remove system tests, nothing to see
This commit is contained in:
Vendored
+40
-40
@@ -98,43 +98,43 @@ jobs:
|
|||||||
# REDIS_URL: redis://localhost:6379/0
|
# REDIS_URL: redis://localhost:6379/0
|
||||||
run: bin/rails test
|
run: bin/rails test
|
||||||
|
|
||||||
system-test:
|
# system-test:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
|
#
|
||||||
# services:
|
# # services:
|
||||||
# redis:
|
# # redis:
|
||||||
# image: valkey/valkey:8
|
# # image: valkey/valkey:8
|
||||||
# ports:
|
# # ports:
|
||||||
# - 6379:6379
|
# # - 6379:6379
|
||||||
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
# # options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout code
|
# - name: Checkout code
|
||||||
uses: actions/checkout@v6
|
# uses: actions/checkout@v6
|
||||||
|
#
|
||||||
- name: Set up Ruby
|
# - name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
# uses: ruby/setup-ruby@v1
|
||||||
with:
|
# with:
|
||||||
bundler-cache: true
|
# bundler-cache: true
|
||||||
|
#
|
||||||
- name: Install SQLite3 CLI
|
# - name: Install SQLite3 CLI
|
||||||
run: sudo apt-get update && sudo apt-get install -y sqlite3
|
# run: sudo apt-get update && sudo apt-get install -y sqlite3
|
||||||
|
#
|
||||||
- name: Set up database
|
# - name: Set up database
|
||||||
env:
|
# env:
|
||||||
RAILS_ENV: test
|
# RAILS_ENV: test
|
||||||
run: bin/rails db:create db:migrate
|
# run: bin/rails db:create db:migrate
|
||||||
|
#
|
||||||
- name: Run System Tests
|
# - name: Run System Tests
|
||||||
env:
|
# env:
|
||||||
RAILS_ENV: test
|
# RAILS_ENV: test
|
||||||
# RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
|
# # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
|
||||||
# REDIS_URL: redis://localhost:6379/0
|
# # REDIS_URL: redis://localhost:6379/0
|
||||||
run: bin/rails test:system
|
# run: bin/rails test:system
|
||||||
|
#
|
||||||
- name: Keep screenshots from failed system tests
|
# - name: Keep screenshots from failed system tests
|
||||||
uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
if: failure()
|
# if: failure()
|
||||||
with:
|
# with:
|
||||||
name: screenshots
|
# name: screenshots
|
||||||
path: ${{ github.workspace }}/tmp/screenshots
|
# path: ${{ github.workspace }}/tmp/screenshots
|
||||||
if-no-files-found: ignore
|
# if-no-files-found: ignore
|
||||||
|
|||||||
Reference in New Issue
Block a user