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

.vimrc

Blame
    • nimrod's avatar
      37ed7f2a
      Modular Vim config. · 37ed7f2a
      nimrod authored
      - Set filetype to unix by default.
      - Use the filetype plugin to have per-filetype configuration.
      - Use 2 spaces for YAML and Terraform files.
      - Move Python configuration from .vimrc to filetype plugin.
      37ed7f2a
      History
      Modular Vim config.
      nimrod authored
      - Set filetype to unix by default.
      - Use the filetype plugin to have per-filetype configuration.
      - Use 2 spaces for YAML and Terraform files.
      - Move Python configuration from .vimrc to filetype plugin.
    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