This file contains hidden or 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
| <!-- Go template for grype report --> | |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="width=device-width"> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <title>Vulnerability Report</title> | |
| <style> |
This file contains hidden or 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
| # api_logger.py | |
| import logging | |
| import json | |
| import requests | |
| import sys | |
| import os | |
| import argparse | |
This file contains hidden or 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
| """ | |
| Version Gate Pre-Run Modifier for Robot Framework | |
| This modifier filters Robot Framework tests based on version tags: | |
| - minver:X.Y.Z Run for versions >= X.Y.Z | |
| - maxver:X.Y.Z Run for versions <= X.Y.Z | |
| - onlyver:<expr> Run for versions matching a version expression | |
| (e.g. >=8.4,<9.0,!=8.6.0) |
OlderNewer