並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 28 件 / 28件

新着順 人気順

Coverageの検索結果1 - 28 件 / 28件

  • Ruby の oneshot coverage で本番稼働中の Rails アプリの使用状況を収集して不要なコードを発見するための仕組みを導入した話 - DIGGLE開発者ブログ

    前置き プロダクト開発は人の手によって行われるものですから、開発サイクルの中で不要なコードを削除し忘れる人的なミスはどうしても発生します。 後から不要なコードに気づき削除する際には、慎重にチェックして本当にコードが使用されていないことを確認する必要があります。ただし、削除に自信が持てない場合、本番稼働中の Rails アプリに障害が発生する可能性も考慮しなければならず、何も影響しない場合はそのままにしておくことも多く、削除が難しい状況も少なくないと思います。 上記状況を打破するために DIGGLE では本番稼働中の Rails アプリのコードの使用状況を収集して不要なコードを発見するための仕組みを導入したので共有したいと思います。 前置き 不要なコードをどのように発見するか Ruby で コードカバレッジを計測する 仕組み導入にあたって悩んだポイント YJIT を有効化した状態で動作するの

      Ruby の oneshot coverage で本番稼働中の Rails アプリの使用状況を収集して不要なコードを発見するための仕組みを導入した話 - DIGGLE開発者ブログ
    • GitHub - k1LoW/octocov: octocov is a toolkit for collecting code metrics (code coverage, code to test ratio, test execution time and your own custom metrics).

      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

        GitHub - k1LoW/octocov: octocov is a toolkit for collecting code metrics (code coverage, code to test ratio, test execution time and your own custom metrics).
      • Alan MacLeod on Twitter: "[Thread] The most racist Ukraine coverage on TV News. 1. The BBC - “It’s very emotional for me because I see Euro… https://t.co/ep06zYKD17"

        [Thread] The most racist Ukraine coverage on TV News. 1. The BBC - “It’s very emotional for me because I see Euro… https://t.co/ep06zYKD17

          Alan MacLeod on Twitter: "[Thread] The most racist Ukraine coverage on TV News. 1. The BBC - “It’s very emotional for me because I see Euro… https://t.co/ep06zYKD17"
        • Puppeteer と Coverage の話

          アドカレの 1 日目も Puppeteer の話を書いてたのだけど、別にその続きとかではまったくなくて、少し前に Puppeteer のカバレッジ関連でドハマリしたのでそれを書こうと思う。 背景他のところで散々書いてきているので、軽く触れる程度にしておくが、 https://github.com/reg-viz/storycap というツールの開発・メンテをしている。Puppeteer で Storybook をクローリングして各 Story を PNG 画像にする、ただそれだけの CLI だ。 このツールは画像ベースの回帰テストを自動化する目的で作られていて、日々の業務でも reg-suit や reg-cli などのツールと組み合わせて使っており、僕自身も前職の頃から世話になっている CLI だ。 自動テストの一環として Storycap を使っている関係上、Storybook をコン

            Puppeteer と Coverage の話
          • GitHub - plantain-00/type-coverage: A CLI tool to check type coverage for typescript code

            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              GitHub - plantain-00/type-coverage: A CLI tool to check type coverage for typescript code
            • WeWork Inc. に関する報道について / About the press coverage on WeWork Inc.

              11月1日付:WeWork Inc. に関する報道について / About the press coverage on WeWork Inc. 2023年11月01日 11月1日付:WeWork Inc. に関する報道について / About the press coverage on WeWork Inc. WeWork Japan 合同会社 一部のメディアにおいて、WeWork Inc.が、米連邦破産法第11条(CHAPTER11)の適用を申請する計画があるとの報道がなされております。皆様におかれましては、当社WeWork Japanへの影響について、ご心配をおかけしているものと存じます。 当社はWeWork Inc.、ソフトバンク株式会社などの共同出資による合弁会社であり、単独の法人として独立性をもった経営を行っております。当社が日本国内で運営する40拠点については、通常通り営業して

              • Risk and coverage views on the Security tab for organizations (public beta)

                Risk and coverage views on the Security tab for organizations (public beta) advanced-securitybetasecurity-and-compliancesecurity-overview November 10, 2022 Security overview’s new risk and coverage views provide greater visibility into your security posture and risk analysis. Each new view offers a refreshed design with several key improvements, including insights and dynamic filtering. Coverage v

                  Risk and coverage views on the Security tab for organizations (public beta)
                • Jornada 1 liga mx 2025 | LigaMX: English/Spanish-language coverage of Mexican soccer

                  2025.01.11 14:57 Conscious_Ad1081 my man (M18) has ruined everything and broken my heart (F19) I am literally at my fucking breaking point. my man has been acting up since his birthday. i don’t even want to mention the half of it because if i wrote every single thing he did/said wrong since October, we’d be here until 2027. we agreed to fix things and met up a few days into 2025. everything was gr

                    Jornada 1 liga mx 2025 | LigaMX: English/Spanish-language coverage of Mexican soccer
                  • playwrightでnext.jsのcoverageまで取りたい

                    playwrightでnext.jsのテストを実行してcoverageまで取るのがわりと情報揃ってなかったのでまとめる。 手順の流れ 今回は、下記の手順を踏んでいく テストの準備対応 @playwright/testの代わりにplaywright-test-coverageを利用する カバレッジモードのnextの設定 nycを利用するnext.jsの起動モードを準備する(next.config.jsの設定) playwrightとnycをつなぐ playwrightからの起動時にnycを利用した起動モードを利用する 1. テストの準備対応 とりあえず普通にnext.js側のファイルを用意 // pages/index.ts import Head from 'next/head' import React, { useState } from 'react' export default

                      playwrightでnext.jsのcoverageまで取りたい
                    • GitHub - elastic/bpfcov: Source-code based coverage for eBPF programs actually running in the Linux kernel

                      This section aims to provide a high-level overiew of the steps you need to get started with bpfcov. Compile the LLVM pass obtaining libBPFCov.so Instrument your eBPF program by compiling it and by running the LLVM pass (libBPFCov.so) on it Build the userspace code of your eBPF application Execute your eBPF application in the kernel through the bpfcov run ... command Generate the .profraw file from

                        GitHub - elastic/bpfcov: Source-code based coverage for eBPF programs actually running in the Linux kernel
                      • GitHub - qodo-ai/qodo-cover: Qodo-Cover: An AI-Powered Tool for Automated Test Generation and Code Coverage Enhancement! 💻🤖🧪🐞

                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                          GitHub - qodo-ai/qodo-cover: Qodo-Cover: An AI-Powered Tool for Automated Test Generation and Code Coverage Enhancement! 💻🤖🧪🐞
                        • graphql-coverage をリリースした - pockestrap

                          こんにちは。 id:Pocke です。 graphql-coverage という gem をリリースしました。 github.com なにこれ GraphQL-Ruby を使っているときに、テストがすべてのフィールドを網羅して呼んでいることを検査するための gem です。 モチベーション 私は GraphQL-Ruby を使って GraphQL サーバーを実装するときに、テストからはすべてのフィールドを呼ぶようなルールで開発をしています。ですがこれを強制する良いツールはありませんでした。そのためフィールドにテストが書かれていることを開発者自身が確認する必要がありました。 「SimpleCovのようなカバレッジ測定ツールを使えば解決するのでは?」と思う方もいるかもしれません。ですが GraphQL-Ruby の場合は単純なコードカバレッジの測定ではこの問題は解決しません。なぜならば Grap

                            graphql-coverage をリリースした - pockestrap
                          • C#のMSTestでFine Code Coverageでカバレッジを計測する - Qiita

                            Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

                              C#のMSTestでFine Code Coverageでカバレッジを計測する - Qiita
                            • Unity 2021 LTS で紹介されたCode Coverage Packageを試してみる

                              こんにちは、Unityエンジニアの向井です。 Unity 2021 LTSのリリースオーバービューを眺めていると、「Code Coverage package with Test Runner」という機能が追加されていました。 個人的に興味があったので、今回はこのパッケージについて取り上げてみようと思います。 この記事では、下記の流れでCode Coverage Packageの基本的な使い方を紹介します。 コードカバレッジについての簡単な説明パッケージのインストール方法と各種設定、利用方法の紹介実際にコードカバレッジを計測する。テストを記述してコードカバレッジをあげてみる。 今回の検証では、下記環境を用いました。 Unity 2021.3.3f1Windows 11、ARM Ryzen 7 5800X ちなみにタイトルでUnity 2021 LTSで紹介されたと書いていますが、2019.

                              • Some of the most iconic 9/11 news coverage is lost. Blame Adobe Flash | CNN Business

                                Your effort and contribution in providing this feedback is much appreciated.

                                  Some of the most iconic 9/11 news coverage is lost. Blame Adobe Flash | CNN Business
                                • Starlink Coverage Tracker

                                  By Mike Puchol      |   This site is NOT affiliated with Starlink or SpaceX   |    OpenStreetMap Contributors   |

                                  • Analysis: Russians in the dark about true state of war amid country’s Orwellian media coverage | CNN Business

                                    Your effort and contribution in providing this feedback is much appreciated.

                                      Analysis: Russians in the dark about true state of war amid country’s Orwellian media coverage | CNN Business
                                    • 一連のニュース記事をまとめる「Full Coverage」、Googleがウェブ検索にも導入

                                      [レベル: 上級] Google は Full Coverage(フル カバレッジ)をウェブ検索にも導入しました。 Full Coverage は 1 つのトピックに関連したニュースをまとめて掲載する特別なセクションです。 2018 年に、米 Google のニュース検索で導入されました。 刻々と進展するニュースを網羅する Full Coverage 長期に渡り、状況が刻々と進展する出来事は珍しくありません。 最近のいちばん身近な例で言えば、まさしく新型コロナウィルスが相当するでしょう。 Full Coverage はそうした新たに情報が次々と報道されるニュース記事を、複数のメディアから集めて網羅したニュース検索結果の専用セクションです。 トピックによっては、関連した最新のニュースはもとよりこれまでの経緯がわかるような過去のニュースも含まれます。 記事の収集には AI(人工知能)を用いてい

                                        一連のニュース記事をまとめる「Full Coverage」、Googleがウェブ検索にも導入
                                      • Rustの新しいコードカバレッジ/Source-based code coverage - Qiita

                                        2022/4/8 追記 Rust 1.60.0にてSource-based code coverageが安定化しました。また、cargoからSource-based code coverageを扱えるツールとしては cargo-llvm-cov があり、以下のように簡単に使えるようになっています。 $ cargo install cargo-llvm-cov $ rustup component add llvm-tools-preview $ cd RUST_PROJECT $ cargo llvm-cov はじめに この記事はRust2 Advent Calendar 2020の2日目です。 RustのコードカバレッジはこれまでGCC互換のDebugInfoを用いたものが広く使われてきました。これを使ってコードカバレッジを取るツールとしてcargo-tarpaulin、cargo-kc

                                          Rustの新しいコードカバレッジ/Source-based code coverage - Qiita
                                        • China Premier League coverage pulled

                                            China Premier League coverage pulled
                                          • Source-based code coverage in nightly | Inside Rust Blog

                                            Support has landed in the nightly compiler for source-based code coverage, and we want your help testing it! What is source-based code coverage, exactly? You may already be familiar with code coverage, which shows you which lines of code execute. Code coverage is usually applied to tests to find out which code is actually being tested and which code isn’t. Nightly Rust already supports another kin

                                              Source-based code coverage in nightly | Inside Rust Blog
                                            • yomoyomo on Twitter: "Some of the most iconic 9/11 news coverage is lost. Blame Adobe Flash - CNN https://t.co/6pOxVk07Vj Flashが死んだため、今では… https://t.co/gdHvz1Kn22"

                                              Some of the most iconic 9/11 news coverage is lost. Blame Adobe Flash - CNN https://t.co/6pOxVk07Vj Flashが死んだため、今では… https://t.co/gdHvz1Kn22

                                                yomoyomo on Twitter: "Some of the most iconic 9/11 news coverage is lost. Blame Adobe Flash - CNN https://t.co/6pOxVk07Vj Flashが死んだため、今では… https://t.co/gdHvz1Kn22"
                                              • flutter test --coverageが遅い - パルカワ2

                                                $ flutter --version Flutter 2.5.1 • channel stable • https://github.com/flutter/flutter.git Framework • revision ffb2ecea52 (9 weeks ago) • 2021-09-17 15:26:33 -0400 Engine • revision b3af521a05 Tools • Dart 2.14.2 原因 github.com 一時的な対応 github.com 根本対応 Flutterのmasterには対応が入ってるっぽい github.com じぶんはどうしたか stableから変更したくなかったので一時的な対応を行った。こういうスクリプトを書いてcoverageを取得したい時にscriptを実行して作成されたファイルを実行するようにした。 import 'd

                                                  flutter test --coverageが遅い - パルカワ2
                                                • Risk and coverage views on the Code Security tab for enterprises (public beta) · GitHub Changelog

                                                  AI & MLLearn about artificial intelligence and machine learning across the GitHub ecosystem and the wider industry. Generative AILearn how to build with generative AI. GitHub CopilotChange how you work with GitHub Copilot. LLMsEverything developers need to know about LLMs. Machine learningMachine learning tips, tricks, and best practices. How AI code generation worksExplore the capabilities and be

                                                    Risk and coverage views on the Code Security tab for enterprises (public beta) · GitHub Changelog
                                                  • Coverageで使ってないコードを検出(ひとり DevTools Advent Calendar 2020 – 18日目) | Ginpen.com

                                                    18 日目の記事です。 DevToolsおれおれAdvent Calendar 2020やります。ひとりで。 たくさんコードを書いて書き足して消して書き直して消して書き換えてって繰り返してると「あれこれまだどこかで使ってるっけ?」みたいになることがあります。近年は VS Code が灰色で表示してくれたり ESLint で検出 できたりもできるけど、でも別ファイルからも使えるようなやつだとそういうのも厳しい感じです。 あと CSS の使われていないスタイルも。 DevTools にはそういうものを検出する機能があります。 先にまとめ Coverage パネルを使って未使用箇所や割合を計測 まともにやるならツールを 未使用コードを検出 DevTools の右上 “…” → More tools → Coverage 指示に従い reload ボタンを押す 画面は再読み込みされる 必要に応じて

                                                      Coverageで使ってないコードを検出(ひとり DevTools Advent Calendar 2020 – 18日目) | Ginpen.com
                                                    • UnitedHealth uses faulty AI to deny elderly patients medically necessary coverage, lawsuit claims

                                                      Anne Marie D. Lee is an editor for CBS MoneyWatch. She writes about topics including personal finance, the workplace, travel and social media. The families of two now-deceased former beneficiaries of UnitedHealth have filed a lawsuit against the health care giant, alleging it knowingly used a faulty artificial intelligence algorithm to deny elderly patients coverage for extended care deemed necess

                                                        UnitedHealth uses faulty AI to deny elderly patients medically necessary coverage, lawsuit claims
                                                      • Code coverage for Go integration tests - The Go Programming Language

                                                        Than McIntosh 8 March 2023 Code coverage tools help developers determine what fraction of a source code base is executed (covered) when a given test suite is executed. Go has for some time provided support (introduced in the Go 1.2 release) to measure code coverage at the package level, using the "-cover" flag of the “go test” command. This tooling works well in most cases, but has some weaknesses

                                                          Code coverage for Go integration tests - The Go Programming Language
                                                        • 2020 State of Open Source Code Coverage - Codecov

                                                          Since our founding six years ago, it has been a core tenet at Codecov to provide the best code coverage analytics to developers and organizations. To give our developers a better grasp of the code coverage landscape, we have compiled our most significant learnings from 2020 in our new annual State of Open Source Code Coverage. Here is what we found. General Codecov Usage Codecov is dedicated to be

                                                            2020 State of Open Source Code Coverage - Codecov
                                                          1