summaryrefslogtreecommitdiff
path: root/test/script
AgeCommit message (Collapse)Author
2021-06-19#3719 - Prevent redir being used again in futurew0rp
2021-03-20#3633 - Put all dummy test files in test/test-filesw0rp
2021-01-27Remove last traces of Travis CIw0rp
* The build status badge is now for GitHub Actions. * The documentation now mentions GitHub instead. * Warnings in the YAML file have been fixed or ignored.
2021-01-01Exclude grandfathered-in non-snakecased lintsKevin Clark
Prior to #3448, several linters should have been failing the custom-checks that look for non-snake-cased lint names. They weren't, but now the bug that hid those is fixed. So to avoid breaking users, we just exclude those from the check. Linters excluded: * clojure/clj_kondo.vim * elixir/elixir_ls.vim * go/golangci_lint.vim * swift/swiftformat.vim
2020-11-28Restore ls -v flag to check-tocKevin Clark
2020-11-28Restore use of grep in check-tocKevin Clark
2020-11-28Use docker image for custom-check scriptsKevin Clark
NOTE: The custom-linting-rules test fails due to the following (legit) warnings: ale_linters/clojure/clj_kondo.vim:29 Use snake_case names for linters ale_linters/elixir/elixir_ls.vim:15 Use snake_case names for linters ale_linters/go/golangci_lint.vim:54 Use snake_case names for linters ale_linters/swift/swiftformat.vim:56 Use snake_case names for linters The message wasn't getting printed because docker was explicitly only being asked to connect stdout (ignoring stderr). Unclear yet why the error code wasn't getting bubbled up.
2020-11-28Fix test/script/check-supported-tools-tablesKevin Clark
2020-11-28Fix TOC testsKevin Clark
Sort order is slightly different than the headings
2020-11-27Fix check-supported-tools-tables checkKevin Clark
sed wasn't using -E, so '|' wasn't being handled properly. Seems likely that's sed-implementation specific, so now it runs through docker's sed to support portability.
2019-09-12Merge pull request #2696 from elebow/update-test-docs-for-linter-listsw0rp
Update test docs and output for linter tables checked
2019-08-13Update test docs and output for linter tables checkedEddie Lebow
This makes some of the run-test output less misleading. Also fix a minor shellcheck issue: "\*" and "\\*" are equivalent, but the second one makes clear that the literal backslash is intentional.
2019-08-03Remove `/bin/ls` assumption.David Wood
On some systems, notably NixOS, there is no `/bin/ls` and thus this test can fail unnecessarily on those systems. This commit uses `/usr/bin/env ls` which resolves the issue.
2019-05-21Revert "Fix #2492 - Remove all Deoplete support for now"w0rp
This reverts commit 975cc7af8fbabe234a220c84e56b7ff719d8d959.
2019-05-16Fix #2492 - Remove all Deoplete support for noww0rp
2019-05-12Force sort locale in check-supported-tools-tablesTomas Janousek
Otherwise it reports that the list isn't sorted properly if user's LANG is different.
2019-04-23Close #1753 - Implement minimum viable integration with Deopletew0rp
2019-03-07Fix #2330 - Do not use getcurpos() to avoid changing curswantw0rp
2019-02-13Fix #2293 - Update linter option documentationw0rp
* The README now points to a valid helptag for linter options. * The now very, very large part of the table of contents for linter and fixer options has been moved into a section so the initial table is smaller. * Special linter or fixer options now lie beneath the general linter or fixer options.
2019-02-11Rewrite the supported tools lists in new filesw0rp
2019-02-10Complain about binary operators on the ends of linesw0rp
2019-02-06Update syntax checkingw0rp
* Line continuation characters should be on the same lines. * .vim file line indentation should be a multiple of 4.
2018-12-01Add bibclen fixer supportHoracio Sanson
Closes #1910
2018-09-04Improve ALE project style checkingw0rp
* The project style linter now runs while you type. * Now the scripts for checking the project require blank lines. * Many style issues have been found and fixed.
2018-07-25Switch to v:t_ variables for type checksw0rp
2018-07-25Ignore a shellcheck warning for custom linting rulesw0rp
2018-07-24#1754 Require snake_case names for linters in the codebasew0rp
2018-07-22Revert "Update the tests to check README.md in the new location"w0rp
This reverts commit 6c10be8992b9a54e83bab58838c1553d36028c7e.
2018-07-22Update the tests to check README.md in the new locationw0rp
2018-07-12Try to start the NeoVim 0.3 tests more timesw0rp
2018-07-12Fix #1716 - Replace tempdir() with a wrapper to preserve TMPDIRw0rp
2018-07-03Automatically retry running Vader tests so Travis CI will fail lessw0rp
2018-06-28Get tests running and passing with NeoVim 0.2 and 0.3w0rp
2018-05-01Update run-tests to make use of /usr/bin/env (#1548)Bjorn Neergaard
* Update run-tests to make use of /usr/bin/env * Update run-vint * Update run-vader-tests * Update custom-linting-rules * Update custom-checks * Update check-toc * Update check-supported-tools-tables
2017-12-07Run tests in parallelw0rp
2017-12-01Break up the rest of the test script code into smaller filesw0rp
2017-12-01Move the Bash code for running Vader tests to its own filew0rp
2017-11-15Complain about stray echo lines in the codebasew0rp
2017-10-25Fix #643 - Add support for write-good for many languagesSumner Evans
2017-10-22Update test scripts to work on OS XGustav Munkby
There were a couple of issues - `paste` requires a file argument - `mktemp` requires a pattern argument - `sort` doesn't support `-h`, but `-n` is enough for sorting on numbers, and `-s` was introduced to perform a stable sort instead. The main issues were that BSD `sed` does not support: - Alternation (`\|`) - solved by splitting to multiple patterns - Bound shortcuts (`x\+`, `x\?`) - solved by replacing with `xx*` and `x\{0,1\}` respectively - Lower-casing (`\L`) - solved by piping through `tr` instead (this will lowercase everything and not only the integration names, but I assumed that wasn't too much of an issue, as a portable alternative for the selective downcasing would be much more involved).
2017-09-28Fix an issue with the check-supported-tools-tables scriptw0rp
2017-09-12Ban getcwd() from the codebase, as it causes problemsw0rp
2017-09-11Require function! to be used instead of functionw0rp
2017-09-10Explain the table of contents script better, and simplify it a bitw0rp
2017-09-10Fix numerous issues with integration documentation tags and the table of ↵w0rp
contents, and add a script to check for theses issues
2017-09-10Move scripts for tests into the test directory, and do not export the Batch ↵w0rp
script for running tests