Skip to content

Commit

Permalink
Merge pull request #1 from wasifarbisoft/MCKIN-24468
Browse files Browse the repository at this point in the history
Mckin 24468
  • Loading branch information
wasifarbisoft authored Oct 10, 2020
2 parents a3df336 + 577a2df commit a1dda7d
Show file tree
Hide file tree
Showing 11 changed files with 893 additions and 55 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: python

python:
- "2.7"
- "3.5"

install:
- make requirements

script:
- make quality
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ dummy_translations: ## generate dummy translation (.po) files
build_dummy_translations: dummy_translations compile_translations ## generate and compile dummy translation files

validate_translations: build_dummy_translations detect_changed_source_translations ## validate translations

quality: ## run quality checkers on the codebase
pycodestyle scormxblock --max-line-length=120
pylint scormxblock

requirements: ## install development environment requirements
pip install -r requirements.txt --exists-action w
pip install -r requirements-dev.txt --exists-action w
2 changes: 2 additions & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
from __future__ import absolute_import

import os
import sys

Expand Down
5 changes: 5 additions & 0 deletions openedx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This file describes this Open edX repo, as described in OEP-7:

oeps:
oep-7: true

Loading

0 comments on commit a1dda7d

Please sign in to comment.