Skip to content

Commit

Permalink
Run smoke test on ubuntu, not windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Nov 5, 2020
1 parent 4ddb692 commit 0aa2ac4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "windows-2019"
runs-on: "ubuntu-18.04"
env:
USING_COVERAGE: '3.6,3.7,3.8,3.9'

Expand Down
75 changes: 37 additions & 38 deletions smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,43 +34,43 @@ class Templates:
tmpdir_p = PathPlus(tmpdir)

for username, repository in [
("domdfcoding", "default_values"),
("domdfcoding", "domdf_sphinx_theme"),
("domdfcoding", "enum_tools"),
("domdfcoding", "extras_require"),
("domdfcoding", "repo_helper_sphinx_theme"),
("domdfcoding", "seed_intersphinx_mapping"),
("domdfcoding", "sphinx-toolbox"),
("domdfcoding", "toctree_plus"),
# TODO: flake8 plugins
("domdfcoding", "apeye"),
("domdfcoding", "attr_utils"),
("domdfcoding", "cawdrey"),
("domdfcoding", "chemistry_tools"),
("domdfcoding", "configconfig"),
("domdfcoding", "consolekit"),
("domdfcoding", "domdf_python_tools"),
("domdfcoding", "domdf_spreadsheet_tools"),
("domdfcoding", "mathematical"),
("domdfcoding", "mh_utils"),
("domdfcoding", "octo-api"),
("domdfcoding", "pprint36"),
("domdfcoding", "pymassspec"),
("domdfcoding", "singledispatch-json"),
("domdfcoding", "southwark"),
("domdfcoding", "whiptail"),
("domdfcoding", "wordle"),
("domdfcoding", "ytools3"),
("domdfcoding", "create_redirect"),
("domdfcoding", "git-toggle"),
("domdfcoding", "octocheese"),
("domdfcoding", "pyupgrade-directories"),
("domdfcoding", "yapf-isort"),
("domdfcoding", "pytest-regressions-stubs"),
("domdfcoding", "webcolors-stubs"),
("domdfcoding", "pre-commit-hooks"),
("domdfcoding", "coverage_pyver_pragma"),
]:
("domdfcoding", "default_values"),
("domdfcoding", "domdf_sphinx_theme"),
("domdfcoding", "enum_tools"),
("domdfcoding", "extras_require"),
("domdfcoding", "repo_helper_sphinx_theme"),
("domdfcoding", "seed_intersphinx_mapping"),
("domdfcoding", "sphinx-toolbox"),
("domdfcoding", "toctree_plus"),
# TODO: flake8 plugins
("domdfcoding", "apeye"),
("domdfcoding", "attr_utils"),
("domdfcoding", "cawdrey"),
("domdfcoding", "chemistry_tools"),
("domdfcoding", "configconfig"),
("domdfcoding", "consolekit"),
("domdfcoding", "domdf_python_tools"),
("domdfcoding", "domdf_spreadsheet_tools"),
("domdfcoding", "mathematical"),
("domdfcoding", "mh_utils"),
("domdfcoding", "octo-api"),
("domdfcoding", "pprint36"),
("domdfcoding", "pymassspec"),
("domdfcoding", "singledispatch-json"),
("domdfcoding", "southwark"),
("domdfcoding", "whiptail"),
("domdfcoding", "wordle"),
("domdfcoding", "ytools3"),
("domdfcoding", "create_redirect"),
("domdfcoding", "git-toggle"),
("domdfcoding", "octocheese"),
("domdfcoding", "pyupgrade-directories"),
("domdfcoding", "yapf-isort"),
("domdfcoding", "pytest-regressions-stubs"),
("domdfcoding", "webcolors-stubs"),
("domdfcoding", "pre-commit-hooks"),
("domdfcoding", "coverage_pyver_pragma"),
]:

target_dir = tmpdir_p / f"{username}_{repository}"
url = GITHUB_COM / username / repository
Expand Down Expand Up @@ -117,7 +117,6 @@ class Templates:

print("::endgroup::")


print("\n")
print(
"Average clone time:",
Expand Down

0 comments on commit 0aa2ac4

Please sign in to comment.