Skip to content

Commit

Permalink
Merge c095a51 into 2560e5d
Browse files Browse the repository at this point in the history
  • Loading branch information
willbarton committed Jan 18, 2022
2 parents 2560e5d + c095a51 commit fe7f9ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox coveralls
- name: Run tox
run: |
- name: Run tox
run: |
tox
coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}"

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Build Status](https://github.com/cfpb/owning-a-home-api/workflows/test/badge.svg)[![Coverage Status](https://coveralls.io/repos/cfpb/owning-a-home-api/badge.svg?branch=master)](https://coveralls.io/r/cfpb/owning-a-home-api?branch=master)

# Owning a Home API
# Owning a Home API

This project feeds detailed mortgage market data to the Consumer Financial Protection Bureau's [Owning a Home suite of tools](http://www.consumerfinance.gov/owning-a-home/). Unfortunately, the main data set it uses is not available publicly and is not in this repository.

Expand All @@ -13,7 +13,7 @@ The tool is intended to be a module that runs inside a Django project, but it ca
These instructions are for installation on a Mac with OS X Yosemite (version 10.10.x), but they could be adapted for other environments.

**Dependencies**
* [Python 3.6](https://www.python.org/)
* [Python 3.8](https://www.python.org/)
* [pip](https://pypi.python.org/pypi/pip)
* [virtualenv](https://virtualenv.pypa.io/en/latest/)
* [Django](https://docs.djangoproject.com/en/stable/)
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
skipsdist=True
envlist=lint,py{36}-dj{22,32}
envlist=lint,py{38}-dj{22,32}

[testenv]
install_command=pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -10,7 +10,6 @@ commands=
coverage report --skip-covered -m

basepython=
py36: python3.6
py38: python3.8

deps=
Expand All @@ -20,7 +19,7 @@ deps=

[testenv:lint]
recreate=False
basepython=python3.6
basepython=python3.8
deps=
black
flake8
Expand Down

0 comments on commit fe7f9ec

Please sign in to comment.