Below you will find pages that utilize the taxonomy term “regex”
Posts
Where is Gitlab's test coverage parsing setting
Today, I wanted to set the regular expression for my test coverage results in Gitlab.
According to Gitlab’s documentation image/svg+xml , I should be able to do that in the test coverage parsing setting in my project settings, by navigating to Settings > CI/CD > General pipelines.
Problem However, I could not find the setting there. So where can I set the regular expression for the test coverage parsing setting in Gitlab?
Posts
Quickly remove unwanted IDs in JSON
I am currently duplicating entities through an API and there is no duplicate feature yet. Therefore, I am copying the JSON output of an entity and using the POST method of the API to re-create it with a different ID. In order to avoid errors, I have to delete all IDs from the JSON. To do that, I have found a regex that helps me find all the "id": "{guid}" combinations that I can then replace with an empty string using VS Code or Notepad++.