4d19b59761
- If the first candidate is exactly the same as the typed string prefer longer candidates (Extends inline completions automatically) - Move README to README.md and use some markdown to make it look better on github - When showing similar emoji in the lookup table, show the list of keywords which matched only when debugging is on - Update emoji annotations from CLDR - More unittests, restructure test files, move some doctests to unittests - Add a utility class KeyvalsToKeycodes to find ibus key codes instead of hardcoding them - Add ceb to CLDR_ANNOTATION_FILES
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
- hosts: localhost
|
|
vars:
|
|
- artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
|
|
tags:
|
|
- classic
|
|
remote_user: root
|
|
roles:
|
|
- role: standard-test-source # to get the source tar ball to do “make check”
|
|
- role: standard-test-basic
|
|
required_packages:
|
|
- make
|
|
- m17n-lib
|
|
- m17n-db-extras
|
|
- python3-enchant
|
|
- libappstream-glib
|
|
- desktop-file-utils
|
|
- python3-gobject
|
|
- python3-gobject-base
|
|
- hunspell-cs
|
|
- hunspell-de
|
|
- hunspell-en
|
|
- hunspell-es
|
|
- hunspell-fr
|
|
- hunspell-it
|
|
- hunspell-ko
|
|
- glib2
|
|
- gtk3
|
|
- dconf
|
|
- dbus-x11
|
|
- ibus
|
|
- ibus-devel
|
|
- gcc
|
|
- python3-devel
|
|
- python3-pyxdg
|
|
- xorg-x11-server-Xvfb
|
|
tests:
|
|
- make-check:
|
|
dir: ./
|
|
run: bash ./make_check.sh ./source
|
|
- doctests-hunspell_suggest.py:
|
|
dir: ./
|
|
run: bash ./run_python_doctests.sh hunspell_suggest.py
|
|
- doctests-m17n_translit.py:
|
|
dir: ./
|
|
run: bash ./run_python_doctests.sh m17n_translit.py
|
|
- doctests-itb_util.py:
|
|
dir: ./
|
|
run: bash ./run_python_doctests.sh itb_util.py
|
|
- doctests-itb_emoji.py:
|
|
dir: ./
|
|
run: bash ./run_python_doctests.sh itb_emoji.py
|
|
- emoji-picker:
|
|
dir: ./
|
|
run: bash ./emoji_picker_tests.sh
|