Skip to content

Commit 0aa2ac4

Browse files
committed
Run smoke test on ubuntu, not windows.
1 parent 4ddb692 commit 0aa2ac4

File tree

2 files changed

+38
-39
lines changed

2 files changed

+38
-39
lines changed

.github/workflows/smoke_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
tests:
1111
name: "Python ${{ matrix.python-version }}"
12-
runs-on: "windows-2019"
12+
runs-on: "ubuntu-18.04"
1313
env:
1414
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1515

smoke_test.py

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -34,43 +34,43 @@ class Templates:
3434
tmpdir_p = PathPlus(tmpdir)
3535

3636
for username, repository in [
37-
("domdfcoding", "default_values"),
38-
("domdfcoding", "domdf_sphinx_theme"),
39-
("domdfcoding", "enum_tools"),
40-
("domdfcoding", "extras_require"),
41-
("domdfcoding", "repo_helper_sphinx_theme"),
42-
("domdfcoding", "seed_intersphinx_mapping"),
43-
("domdfcoding", "sphinx-toolbox"),
44-
("domdfcoding", "toctree_plus"),
45-
# TODO: flake8 plugins
46-
("domdfcoding", "apeye"),
47-
("domdfcoding", "attr_utils"),
48-
("domdfcoding", "cawdrey"),
49-
("domdfcoding", "chemistry_tools"),
50-
("domdfcoding", "configconfig"),
51-
("domdfcoding", "consolekit"),
52-
("domdfcoding", "domdf_python_tools"),
53-
("domdfcoding", "domdf_spreadsheet_tools"),
54-
("domdfcoding", "mathematical"),
55-
("domdfcoding", "mh_utils"),
56-
("domdfcoding", "octo-api"),
57-
("domdfcoding", "pprint36"),
58-
("domdfcoding", "pymassspec"),
59-
("domdfcoding", "singledispatch-json"),
60-
("domdfcoding", "southwark"),
61-
("domdfcoding", "whiptail"),
62-
("domdfcoding", "wordle"),
63-
("domdfcoding", "ytools3"),
64-
("domdfcoding", "create_redirect"),
65-
("domdfcoding", "git-toggle"),
66-
("domdfcoding", "octocheese"),
67-
("domdfcoding", "pyupgrade-directories"),
68-
("domdfcoding", "yapf-isort"),
69-
("domdfcoding", "pytest-regressions-stubs"),
70-
("domdfcoding", "webcolors-stubs"),
71-
("domdfcoding", "pre-commit-hooks"),
72-
("domdfcoding", "coverage_pyver_pragma"),
73-
]:
37+
("domdfcoding", "default_values"),
38+
("domdfcoding", "domdf_sphinx_theme"),
39+
("domdfcoding", "enum_tools"),
40+
("domdfcoding", "extras_require"),
41+
("domdfcoding", "repo_helper_sphinx_theme"),
42+
("domdfcoding", "seed_intersphinx_mapping"),
43+
("domdfcoding", "sphinx-toolbox"),
44+
("domdfcoding", "toctree_plus"),
45+
# TODO: flake8 plugins
46+
("domdfcoding", "apeye"),
47+
("domdfcoding", "attr_utils"),
48+
("domdfcoding", "cawdrey"),
49+
("domdfcoding", "chemistry_tools"),
50+
("domdfcoding", "configconfig"),
51+
("domdfcoding", "consolekit"),
52+
("domdfcoding", "domdf_python_tools"),
53+
("domdfcoding", "domdf_spreadsheet_tools"),
54+
("domdfcoding", "mathematical"),
55+
("domdfcoding", "mh_utils"),
56+
("domdfcoding", "octo-api"),
57+
("domdfcoding", "pprint36"),
58+
("domdfcoding", "pymassspec"),
59+
("domdfcoding", "singledispatch-json"),
60+
("domdfcoding", "southwark"),
61+
("domdfcoding", "whiptail"),
62+
("domdfcoding", "wordle"),
63+
("domdfcoding", "ytools3"),
64+
("domdfcoding", "create_redirect"),
65+
("domdfcoding", "git-toggle"),
66+
("domdfcoding", "octocheese"),
67+
("domdfcoding", "pyupgrade-directories"),
68+
("domdfcoding", "yapf-isort"),
69+
("domdfcoding", "pytest-regressions-stubs"),
70+
("domdfcoding", "webcolors-stubs"),
71+
("domdfcoding", "pre-commit-hooks"),
72+
("domdfcoding", "coverage_pyver_pragma"),
73+
]:
7474

7575
target_dir = tmpdir_p / f"{username}_{repository}"
7676
url = GITHUB_COM / username / repository
@@ -117,7 +117,6 @@ class Templates:
117117

118118
print("::endgroup::")
119119

120-
121120
print("\n")
122121
print(
123122
"Average clone time:",

0 commit comments

Comments
 (0)