Skip to content
Snippets Groups Projects
Select Git revision
  • a0d9b2352cec303fca62923c397c8d5bf7c91653
  • master default
2 results

Dockerfile

Blame
    • nimrod's avatar
      a0d9b235
      A few updates. · a0d9b235
      nimrod authored
      - Update to Alpine 3.18.
      - Update to Ruby 3.2.
      - Update transmission-rss to 1.2.3.
      a0d9b235
      History
      A few updates.
      nimrod authored
      - Update to Alpine 3.18.
      - Update to Ruby 3.2.
      - Update transmission-rss to 1.2.3.
    tox.ini 708 B
    [tox]
    skip_install = True
    skipsdist = True
    envlist = openbsd60,xenial,trusty,precise,stretch,jessie,wheezy
    
    [testenv]
    envdir = {toxinidir}/.tox/molecule
    deps = -rtests/requirements.txt
    passenv = HOME VBOX* ANSIBLE_*
    whitelist_externals =
        sh
    commands =
        sh -c "ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles"
        molecule test --platform {envname}
    
    [testenv:pre-commit]
    deps =
        -rtests/requirements.txt
        pre-commit
    passenv = HOME VBOX* ANSIBLE_*
    whitelist_externals =
        sh
    commands =
        sh -c "ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles"
        molecule dependency
        pre-commit run --all-files