Skip to content

Commit f740743

Browse files
authored
Dev environment improvements (#607)
* Remove ruby-lsp from gemfile * Remove cloud report publish * Remove code climate coverage upload * Update local ruby version to 3.4.5 * Remove coverage badges
1 parent 82f81cc commit f740743

File tree

4 files changed

+2
-36
lines changed

4 files changed

+2
-36
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -43,43 +43,13 @@ jobs:
4343
ruby-version: ${{ matrix.ruby }}
4444
bundler-cache: true
4545
- name: Test
46-
uses: paambaati/[email protected]
4746
env:
48-
CC_TEST_REPORTER_ID: be263ef9412dc65a7aa8dfb6e8162d5c7cfb3307fae0a444cde9dd6ca6f52848
4947
WITH_OJ_GEM: ${{ matrix.oj }}
5048
RUBY_VERSION: ${{ matrix.ruby }}
51-
with:
52-
coverageCommand: bundle exec rake test:coverage
53-
coverageLocations: coverage/coverage.json:simplecov
49+
run: bundle exec rake test
5450
- name: Upload report
5551
uses: actions/upload-artifact@v4
5652
with:
5753
name: allure-results-${{ matrix.ruby }}-oj-${{ matrix.oj }}
5854
path: "*/reports/allure-results/"
5955
retention-days: 1
60-
61-
report:
62-
name: Allure report
63-
runs-on: ubuntu-latest
64-
needs: rspec
65-
if: always()
66-
steps:
67-
- name: Download allure-results
68-
uses: actions/download-artifact@v4
69-
- name: Publish allure report
70-
uses: andrcuns/[email protected]
71-
env:
72-
GOOGLE_CLOUD_CREDENTIALS_JSON: ${{ secrets.GOOGLE_CLOUD_CREDENTIALS_JSON }}
73-
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74-
ALLURE_JOB_NAME: rspec
75-
with:
76-
storageType: gcs
77-
resultsGlob: "**/allure-results"
78-
bucket: allure-test-reports
79-
prefix: allure-ruby/$GITHUB_REF
80-
updatePr: description
81-
summary: behaviors
82-
copyLatest: true
83-
ignoreMissingResults: false
84-
summaryTableType: ascii
85-
debug: true

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.3
1+
3.4.5

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ group :development do
1010
gem "colorize", "~> 1.1.0"
1111
gem "debug", "~> 1.8"
1212
gem "rake", "~> 13.3.0"
13-
gem "ruby-lsp", "~> 0.25.0"
1413
gem "semver2", "~> 3.4"
1514
gem "solargraph", "~> 0.56.0"
1615
end

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
[![Gem Version](https://badge.fury.io/rb/allure-ruby-commons.svg)](https://rubygems.org/gems/allure-ruby-commons)
44
[![Total Downloads](https://img.shields.io/gem/dt/allure-ruby-commons?color=blue)](https://rubygems.org/gems/allure-ruby-commons)
55
![Workflow status](https://github.com/allure-framework/allure-ruby/workflows/Test/badge.svg)
6-
[![Maintainability](https://api.codeclimate.com/v1/badges/3190a4c9e68f20dd82ec/maintainability)](https://codeclimate.com/github/allure-framework/allure-ruby/maintainability)
7-
[![Test Coverage](https://api.codeclimate.com/v1/badges/3190a4c9e68f20dd82ec/test_coverage)](https://codeclimate.com/github/allure-framework/allure-ruby/test_coverage)
86
[![Yard Docs](https://img.shields.io/badge/yard-docs-blue.svg)](https://rubydoc.info/github/allure-framework/allure-ruby/master)
9-
[![Test Report](https://img.shields.io/badge/report-allure-blue.svg)](https://storage.googleapis.com/allure-test-reports/allure-ruby/refs/heads/master/index.html)
107

118
Ruby testing framework adaptors for generating allure compatible test reports.
129

0 commit comments

Comments
 (0)