Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
make develop
- name: Test Mathics
run: |
pip install pytest pexpect
pip install -r requirements-dev.txt
make -j3 check
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
make develop
- name: Test Mathics
run: |
pip install pytest pexpect
pip install -r requirements-dev.txt
make -j3 check
3 changes: 2 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ jobs:
python setup.py install
- name: Test Mathics
run: |
pip install pytest
pip install -r requirements-dev.txt
set PYTEST_WORKERS="-n3"
make check
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ clean:

#: Run py.test tests. Use environment variable "o" for pytest options
pytest:
py.test test $o
py.test $(PYTEST_WORKERS) test $o


#: Run a more extensive pattern-matching test
Expand Down
4 changes: 2 additions & 2 deletions mathics/builtin/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ def apply(self, args, evaluation):
class True_(Predefined):
"""
<dl>
<dt>'True'
<dd>represents the Boolean true value.
<dt>'True'
<dd>represents the Boolean true value.
</dl>
"""

Expand Down
4 changes: 4 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Additional packages used in testing
pytest
pytest-xdist
pexpect