Skip to content

Commit dc752c0

Browse files
committed
Remove tox, not using it anymore.
1 parent 4d6ae98 commit dc752c0

6 files changed

Lines changed: 4 additions & 13 deletions

File tree

.ansible-lint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ exclude_paths:
88
- molecule/default/converge.yml
99
- molecule/default/verify.yml
1010
- molecule/default/collections.yml
11-
- .tox
1211
- .cache
1312
- .github
1413
- requirements.yml

.github/settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
repository:
66
description: Install and configure java on your system.
77
homepage: https://robertdebock.nl/
8-
topics: java, oracle, openjdk, jre, jdk, alternatives, system, ansible, molecule, tox, playbook
8+
topics: java, oracle, openjdk, jre, jdk, alternatives, system, ansible, molecule, playbook

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.molecule
22
*.log
33
*.swp
4-
.tox
54
.cache
65
.DS_Store
76
.ansible

.yamllint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ rules:
1313
check-keys: false
1414

1515
ignore: |
16-
.tox/
1716
.cache/

CONTRIBUTING.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ Now you can start to edit on your laptop.
3737

3838
### [4. Optionally: test your changes](#4-optionally-test-your-changes)
3939

40-
Install [molecule](https://molecule.readthedocs.io/en/stable/) and [Tox](https://tox.readthedocs.io/):
40+
Install [molecule](https://molecule.readthedocs.io/en/stable/):
4141

4242
```shell
43-
pip install molecule tox ansible-lint docker
43+
pip install molecule ansible-lint docker
4444
```
4545

4646
And run `molecule test`. If you want to test a specific distribution, set `image` and optionally `tag`:
@@ -49,12 +49,6 @@ And run `molecule test`. If you want to test a specific distribution, set `image
4949
image=centos tag=7 molecule test
5050
```
5151

52-
Once it start to work, you can test multiple version of Ansible:
53-
54-
```shell
55-
image=centos tag=7 tox
56-
```
57-
5852
### [5. Optionally: Regenerate all dynamic content](#5-optionally-regenerate-all-dynamic-content)
5953

6054
You can use [Ansible Generator](https://github.com/robertdebock/ansible-generator) to regenerate all dynamic content.

molecule/default/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lint: |
1414
driver:
1515
name: docker
1616
platforms:
17-
- name: "java-${image:-fedora}-${tag:-latest}${TOX_ENVNAME}"
17+
- name: "java-${image:-fedora}-${tag:-latest}"
1818
image: "${namespace:-robertdebock}/${image:-fedora}:${tag:-latest}"
1919
command: /sbin/init
2020
cgroupns_mode: host

0 commit comments

Comments
 (0)