[open-] fix open-file for - in cmdlogs #2582 #1840
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: visidata-ci-build | |
on: | |
pull_request: | |
branches: | |
- stable | |
- develop | |
push: | |
branches: | |
- stable | |
- develop | |
jobs: | |
run-tests: | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.pythonversion }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Environment | |
run: | | |
export PYTHONPATH=~/visidata:~/visidata/visidata | |
locale | |
- name: Install Base VisiData | |
run: pip3 install . | |
- name: Ensure VisiData works with Base Dependencies | |
run: vd --version | |
- name: Ensure VisiData can load a dir | |
run: vd . --batch | |
- name: Install lxml dependencies | |
run: sudo apt install -y libxml2-dev libxslt-dev | |
- name: Install ping dependencies | |
run: sudo apt install -y traceroute | |
- name: Install optional dependencies | |
run: | | |
pip3 install ".[test]" | |
pip3 install pytest | |
- name: Run unit tests | |
run: | | |
pytest -sv visidata/tests/ | |
- name: Run Cmdlog Tests | |
run: dev/test.sh | |
shell: bash | |
- name: Test macros | |
run: | | |
mkdir -p ~/.visidata | |
cp tests/macros/macros.jsonl tests/macros/1.vdj ~/.visidata/ | |
vd --batch -p tests/macros/test_macro.vd --output tests/macros/golden/test_macro.tsv | |
git --no-pager diff --numstat tests/ | |
git --no-pager diff --exit-code tests/ | |
- name: Ensure VisiData can create completions | |
run: python -v dev/zsh-completion.py | |
- name: Ensure VisiData does not drop lines from RepeatFiles | |
run: | | |
NUMLINES=$(seq 10000 | vd -b | wc -l) | |
if ! [[ $NUMLINES -eq 10000 ]]; then | |
exit 1 | |
fi |