Skip to content

Commit 0f209d4

Browse files
committed
Fix up CI?
1 parent f74dc1d commit 0f209d4

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/consistency-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Mathics3 Module nltk
3434
run: |
3535
python -m pip install --no-build-isolation setuptools Mathics3[full] nltk PatternLite enchant
36-
make develop
3736
- name: Test Mathics Consistency and Style
3837
run: |
38+
make develop
3939
make check-consistency-and-style

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ jobs:
3030
git clone https://github.com/Mathics3/mathics-core
3131
(cd mathics-core && python -m pip install -e .[full])
3232
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
33-
python ./admin-tools/download-bcp47.py
3433
3534
- name: Install Mathics3 Module nltk
3635
run: |
3736
python -m pip install --no-build-isolation setuptools Mathics3[full] nltk PatternLite enchant
38-
make develop
3937
- name: Test Mathics3 Module nltk
4038
run: |
39+
make develop
4140
make -j3 check

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,9 @@ pypi-setup:
4242
$(PIP) install --no-build-isolation -e .
4343

4444
#: Set up to run from the source tree
45-
develop: pypi-setup download-bcp47
45+
develop: pypi-setup
4646
$(MAKE) wordlist
47-
48-
#: Install Mathics3 Module nltk
49-
install: pypi-setup
50-
$(PYTHON) setup.py install
47+
$(MAKE) download-bcp47
5148

5249
#: Run tests
5350
test check: pytest doctest

0 commit comments

Comments
 (0)