This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
75 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Node CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
run_tests: | ||
name: Tests | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install npm dependencies | ||
run: npm install | ||
|
||
- name: Run Js tests | ||
run: make test-js | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
django==2.2.17 # via -r requirements/base.in, django-model-utils, djangorestframework | ||
django==2.2.17 # via -r requirements/base.in, django-model-utils, djangorestframework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
pip | ||
setuptools | ||
wheel | ||
wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Dependencies to run compile tools | ||
-c constraints.txt | ||
|
||
pip-tools # Contains pip-compile, used to generate pip requirements files | ||
pip-tools # Contains pip-compile, used to generate pip requirements files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,17 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
beautifulsoup4==4.9.3 # via pynliner | ||
certifi==2020.12.5 # via requests | ||
chardet==3.0.4 # via requests | ||
cssutils==1.0.2 # via pynliner | ||
decorator==4.4.2 # via pycontracts | ||
django-model-utils==2.3.1 # via -r requirements/base.in | ||
django==2.2.17 # via -r requirements/base.in, django-model-utils, djangorestframework | ||
djangorestframework==3.11.0 # via -r requirements/base.in | ||
freezegun==1.0.0 # via -r requirements/base.in | ||
idna==2.8 # via requests | ||
git+https://github.com/milesrichardson/ParsePy.git # via -r requirements/base.in | ||
pycontracts==1.7.1 # via -r requirements/base.in | ||
pylru==1.0.6 # via -r requirements/base.in | ||
pynliner==0.8.0 # via -r requirements/base.in | ||
pyparsing==2.4.7 # via pycontracts | ||
python-dateutil==2.8.1 # via -r requirements/base.in, freezegun | ||
pytz==2020.4 # via django | ||
requests==2.22.0 # via -r requirements/base.in | ||
six==1.15.0 # via parse-rest, python-dateutil | ||
soupsieve==2.1 # via beautifulsoup4 | ||
sqlparse==0.4.1 # via django | ||
underscore.py==0.1.6 # via -r requirements/base.in | ||
urllib3==1.25.11 # via requests | ||
-r base.txt # Core dependencies for this package | ||
|
||
# Testing Packages | ||
coverage | ||
astroid | ||
pytest-django | ||
httpretty==0.9.7 | ||
pycodestyle | ||
pylint | ||
pydocstyle | ||
mock==1.0.1 | ||
testfixtures==4.5.0 | ||
bok-choy==0.6.2 | ||
sure==1.2.3 | ||
ddt==0.8.0 | ||
selenium==2.53.1 | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters