Skip to content

Commit

Permalink
Merge #235
Browse files Browse the repository at this point in the history
235: Fix CI r=nbraud a=nbraud

- [x] Stop running lints when running tests.
      Not only is this inefficient, it forces us to get linting working in all
      environments, which isn't currently possible (see pylint-dev/pylint#3882).
      As a result, remove the `_test-only` task.
- [x] Don't run tests when bootstrapping Bork in CI
      - It is useless, as `python3 /tmp/bork...pyz run test` immediately shells
        out to pytest, and tests the version of bork that is on the filesystem.
      - It fails because `git` isn't installed.

Changes by @duckinator and myself, extracted from #233 and #234

Co-authored-by: Ellen Marie Dash <me@duckie.co>
Co-authored-by: nicoo <nicoo@mur.at>
  • Loading branch information
3 people authored Jan 1, 2021
2 parents d44f46c + 1b7dee0 commit 3601333
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ Zipapp_bootstrap_task:
- cd /tmp/pass3
- cp /tmp/pass2/dist/bork-*.pyz /tmp/bork-pass2.pyz
- python3 /tmp/bork-pass2.pyz build
- cp ./dist/bork-*.pyz /tmp/bork-pass3.pyz
- python3 /tmp/bork-pass3.pyz run lint
- '[ -e ./dist/bork-*.pyz ]'


Linux_task:
container:
Expand Down Expand Up @@ -97,7 +97,7 @@ FreeBSD_task:
- python${PYTHON} -m pip install -e .[testing_only]
script:
- python${PYTHON} --version
- bork run _test-only
- bork run test

# Windows_task:
# allow_failures: $CIRRUS_TASK_NAME =~ '.*-rc-.*'
Expand Down
10 changes: 4 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@ strip_zipapp_version = true
[tool.bork.aliases]
# Runs *only* pylint and mypy. (Not the actual tests.)
lint = "pytest -k 'pylint or mypy' --pylint --mypy --verbose"
# Runs all tests and pylint.
test = "pytest --pylint --mypy --verbose"
# Runs fast tests, and pylint.
test-fast = "pytest --pylint --mypy --verbose -m 'not slow'"
# Runs all tests.
test = "pytest --verbose"
# Runs fast tests.
test-fast = "pytest --verbose -m 'not slow'"
# Runs slow tests.
test-slow = "pytest --verbose -m slow"
# Runs fast tests and slow tests, but not pylint.
_test-only = "pytest --verbose"
2 changes: 1 addition & 1 deletion tests/test_cmd_aliases.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
def test_cmd_aliases():
result = bork_cli("aliases")
assert result.exit_code == 0
assert result.output == 'lint\ntest\ntest-fast\ntest-slow\n_test-only\n'
assert result.output == 'lint\ntest\ntest-fast\ntest-slow\n'

0 comments on commit 3601333

Please sign in to comment.