Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
ba5da451
Commit
ba5da451
authored
Jun 27, 2015
by
Bertrand Marron
Committed by
Jesse Zoldak
Aug 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add circle configuration
parent
009e8a10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
circle.yml
+12
-0
scripts/circle.sh
+15
-0
No files found.
circle.yml
0 → 100644
View file @
ba5da451
dependencies
:
override
:
-
pip install setuptools==0.6c11
-
pip install distribute==0.6.49
-
pip install pbr==0.9.0
-
paver install_prereqs
test
:
override
:
-
./scripts/circle.sh
:
parallel
:
true
scripts/circle.sh
0 → 100755
View file @
ba5da451
#!/usr/bin/env sh
case
$CIRCLE_NODE_INDEX
in
0
)
paver test_lib
--extra_args
=
"--with-flaky"
--cov_args
=
"-p"
;;
1
)
paver test_system
-s
cms
--extra_args
=
"--with-flaky --with-xunit"
--cov_args
=
"-p"
;;
2
)
paver test_system
-s
lms
--extra_args
=
"--with-flaky --with-xunit"
--cov_args
=
"-p"
;;
esac
RET
=
$?
cp
-r
reports/.
$CIRCLE_TEST_REPORTS
exit
$RET
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment