Skip to content

Commit

Permalink
Build process changes for Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Singh committed Aug 15, 2020
1 parent 8a8db6b commit 50c6075
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
os:
- linux
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
7 changes: 4 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,14 @@ install:

# Install the build dependencies of the project.
# - "%CMD_IN_ENV% pip install -r requirements.txt"
- cmd: pip install coverage
- cmd: pip install nose
- cmd: python -m pip install coverage
- cmd: python -m pip install nose


build_script:
- cd .

test_script:
# Run the project tests
- cmd: python setup.py nosetests"
- cmd: python -m coverage run -m unittest discover -s lexpy/tests
- cmd: python -m coverage report -i -m

0 comments on commit 50c6075

Please sign in to comment.