I’m always forgetting how to configure my molecule.yml file to ignore certain PEP8 rules. Here’s a quick example showing how to ignore the E501 Line too long rule:

verifier:
  name: testinfra
  lint:
    name: flake8
    options:
      ignore: 'E501'