Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 446b1b7

Browse files
committed
Test with three files.
1 parent 352d0c7 commit 446b1b7

File tree

4 files changed

+72
-71
lines changed

4 files changed

+72
-71
lines changed

.github/workflows/tests.yml

Lines changed: 66 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -24,69 +24,70 @@ jobs:
2424
token: ${{ secrets.GITHUB_TOKEN }}
2525
- name: Show changed files
2626
run:
27-
echo '${{ join(fromJSON(steps.changed_files.outputs.all), ' ') }}'
28-
- name: Install pospell
29-
run: |
30-
sudo apt-get update
31-
sudo apt-get install -y hunspell hunspell-fr-comprehensive
32-
sudo python3 -m pip install pospell
33-
- name: Run pospell
34-
run: pospell -p dict -l fr_FR *.po */*.po
27+
echo '${{ join(fromJSON(steps.changed_files.outputs.all), "\n") }}'
28+
# - name: Install pospell
29+
# run: |
30+
# sudo apt-get update
31+
# sudo apt-get install -y hunspell hunspell-fr-comprehensive
32+
# sudo python3 -m pip install pospell
33+
# - name: Run pospell
34+
# run: pospell -p dict -l fr_FR *.po */*.po
3535

36-
powrap:
37-
name: 'Longueur des lignes (powrap)'
38-
runs-on: ubuntu-latest
39-
steps:
40-
- uses: actions/checkout@v2
41-
- name: Install powrap
42-
run: |
43-
sudo apt-get update
44-
sudo apt-get install gettext
45-
sudo python3 -m pip install powrap
46-
- name: Run powrap
47-
run: powrap --check --quiet *.po */*.po
48-
49-
padpo:
50-
name: 'Grammaire (padpo)'
51-
runs-on: ubuntu-latest
52-
steps:
53-
- uses: actions/checkout@v2
54-
- uses: actions/setup-python@v2
55-
with:
56-
python-version: '3.9'
57-
- name: Install padpo
58-
run: |
59-
python3.9 -m venv .venv
60-
.venv/bin/python -m pip install --upgrade pip setuptools wheel
61-
.venv/bin/python -m pip install padpo
62-
- name: Run padpo
63-
run: PATH=$PATH:$PWD/.venv/bin/ padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore
64-
65-
sphinx:
66-
name: 'Génération de la doc (sphinx)'
67-
runs-on: ubuntu-latest
68-
steps:
69-
- uses: actions/checkout@v2
70-
- uses: actions/cache@v2
71-
with:
72-
path: '~/cpython/'
73-
key: '1'
74-
- uses: actions/setup-python@v2
75-
with:
76-
python-version: '3.9'
77-
- name: Clone cpython
78-
run: |
79-
if [ ! -d ~/cpython ]; then
80-
git clone https://github.com/python/cpython ~/cpython/
81-
else
82-
git -C ~/cpython fetch
83-
fi
84-
- name: Prepare build hierarchy
85-
run: |
86-
mkdir -p ~/locales/fr/LC_MESSAGES/
87-
cp -uv --parents *.po */*.po ~/locales/fr/LC_MESSAGES/
88-
git -C ~/cpython checkout b30934e9afb0af3f8e2e5f0992445be775b3c630
89-
- name: Prepare venv
90-
run: make -C $HOME/cpython/Doc venv
91-
- name: sphinx-build
92-
run: make -C $HOME/cpython/Doc SPHINXOPTS="-qW -j4 -D locale_dirs=$HOME/locales -D language=fr -D gettext_compact=0" autobuild-dev-html
36+
# powrap:
37+
# name: 'Longueur des lignes (powrap)'
38+
# runs-on: ubuntu-latest
39+
# steps:
40+
# - uses: actions/checkout@v2
41+
# - name: Install powrap
42+
# run: |
43+
# sudo apt-get update
44+
# sudo apt-get install gettext
45+
# sudo python3 -m pip install powrap
46+
# - name: Run powrap
47+
# run: powrap --check --quiet *.po */*.po
48+
#
49+
# padpo:
50+
# name: 'Grammaire (padpo)'
51+
# runs-on: ubuntu-latest
52+
# steps:
53+
# - uses: actions/checkout@v2
54+
# - uses: actions/setup-python@v2
55+
# with:
56+
# python-version: '3.9'
57+
# - name: Install padpo
58+
# run: |
59+
# python3.9 -m venv .venv
60+
# .venv/bin/python -m pip install --upgrade pip setuptools wheel
61+
# .venv/bin/python -m pip install padpo
62+
# - name: Run padpo
63+
# run: PATH=$PATH:$PWD/.venv/bin/ padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore
64+
#
65+
# sphinx:
66+
# name: 'Génération de la doc (sphinx)'
67+
# runs-on: ubuntu-latest
68+
# steps:
69+
# - uses: actions/checkout@v2
70+
# - uses: actions/cache@v2
71+
# with:
72+
# path: '~/cpython/'
73+
# key: '1'
74+
# - uses: actions/setup-python@v2
75+
# with:
76+
# python-version: '3.9'
77+
# - name: Clone cpython
78+
# run: |
79+
# if [ ! -d ~/cpython ]; then
80+
# git clone https://github.com/python/cpython ~/cpython/
81+
# else
82+
# git -C ~/cpython fetch
83+
# fi
84+
# - name: Prepare build hierarchy
85+
# run: |
86+
# mkdir -p ~/locales/fr/LC_MESSAGES/
87+
# cp -uv --parents *.po */*.po ~/locales/fr/LC_MESSAGES/
88+
# git -C ~/cpython checkout b30934e9afb0af3f8e2e5f0992445be775b3c630
89+
# - name: Prepare venv
90+
# run: make -C $HOME/cpython/Doc venv
91+
# - name: sphinx-build
92+
# run: make -C $HOME/cpython/Doc SPHINXOPTS="-qW -j4 -D locale_dirs=$HOME/locales -D language=fr -D gettext_compact=0" autobuild-dev-html
93+
#

library/aifc.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2020-10-01 16:00+0200\n"
9-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9+
"PO-Revision-Date: 2020-12-11 15:56+0100\n"
10+
"Last-Translator: Julien Palard <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"

library/allos.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
9-
"PO-Revision-Date: 2018-07-27 22:58+0200\n"
10-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9+
"PO-Revision-Date: 2020-12-11 15:56+0100\n"
10+
"Last-Translator: Julien Palard <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"

library/zoneinfo.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
9-
"PO-Revision-Date: 2020-07-20 15:07+0200\n"
10-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9+
"PO-Revision-Date: 2020-12-11 15:55+0100\n"
10+
"Last-Translator: Julien Palard <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"

0 commit comments

Comments
 (0)