Skip to content

Commit

Permalink
Merge 93f539d into e179e07
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaclell committed Jul 9, 2021
2 parents e179e07 + 93f539d commit 6495298
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
*.DS_Store
*.prof
.python-version

.coverage
.tox/
AUTHORS
ChangeLog

# ignore visualization files that may be generated by main functions in the core concept_formation directory

concept_formation/images/
Expand Down Expand Up @@ -25,4 +34,4 @@ visualize/output*
visualize/images
*.egg-info
.cache
.eggs/
.eggs/
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
language: python
sudo: required
dist: xenial
python:
- '3.7'
- 'pypy3.5-6.0'
- 'nightly'
- 'pypy3'
install:
- pip install tox-travis
- pip install coveralls
- pip install .
- pip install -r test_requirements.txt
script:
- tox
- flake8 concept_formation
- coverage run --source concept_formation -m pytest
- coverage report
after_success:
- coveralls
deploy:
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[tox]
envlist = py27,py37,pypy2.7,pypy3.5

[testenv]
commands =
coverage run --source concept_formation -m pytest
coverage report
flake8 concept_formation
deps =
-rtest_requirements.txt
-r test_requirements.txt

[pytest]
doctest_optionflags=ALLOW_UNICODE
Expand Down

0 comments on commit 6495298

Please sign in to comment.