Skip to content

Commit c5f6032

Browse files
committedJun 28, 2017
Import 1.50.x series code
1 parent 6d56181 commit c5f6032

File tree

207 files changed

+36317
-10640
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+36317
-10640
lines changed
 

‎.appveyor.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
version: 1.0.{build}
2+
3+
environment:
4+
5+
global:
6+
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
7+
# /E:ON and /V:ON options are not enabled in the batch script intepreter
8+
# See: http://stackoverflow.com/a/13751649/163740
9+
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\continuous-integration\\appveyor\\run_with_env.cmd"
10+
11+
platform:
12+
- x64
13+
14+
15+
install:
16+
- mkdir %userprofile%\.mujoco
17+
- curl %MUJOCO_FOR_WINDOWS% -o %userprofile%\.mujoco\mjpro.tar.gz
18+
- curl https://github.com/glfw/glfw/releases/download/3.2.1/glfw-3.2.1.bin.WIN64.zip -o %userprofile%\glfw.zip
19+
- cd %userprofile%\.mujoco\
20+
- tar -zxvf mjpro.tar.gz
21+
- echo "%PYTHON_VERSION% C:\Miniconda35-x64 %userprofile%"
22+
- set PATH=C:\Miniconda35-x64;C:\Miniconda35-x64\Scripts;%PATH%
23+
- conda config --set always_yes yes --set changeps1 no
24+
- conda update -q conda
25+
- conda info -a
26+
- conda create -q -n test-environment python=3.5 numpy scipy
27+
- activate test-environment
28+
- SET PATH=%userprofile%\.mujoco\mjpro150\bin;%PATH%;
29+
- SET RENDERING_OFF=1
30+
- cd C:\projects\pymj
31+
- pip install -r requirements.txt
32+
- pip install -r requirements.dev.txt
33+
34+
build: off
35+
36+
test_script:
37+
- pytest -s --verbose --durations=10 --instafail
38+
39+

‎.dockerignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
generated_cymj*
2+
_pyxbld*
3+
dist
4+
cache
5+
.idea/*
6+
*~
7+
.*~
8+
*#*#
9+
*.o
10+
*.dat
11+
*.prof
12+
*.lprof
13+
*.local
14+
.realsync
15+
.DS_Store
16+
**/*.egg-info
17+
.cache
18+
*.ckpt
19+
*.log
20+
.ipynb_checkpoints
21+
venv/
22+
.vimrc
23+
*.settings
24+
*.svn
25+
.project
26+
.pydevproject
27+
tags
28+
*sublime-project
29+
*sublime-workspace
30+
# Intermediate outputs
31+
__pycache__
32+
**/__pycache__
33+
*.pb.*
34+
*.pyc
35+
*.swp
36+
*.swo
37+
# generated data
38+
*.rdb
39+
*.db
40+
*.avi
41+
# mujoco outputs
42+
MUJOCO_LOG.TXT
43+
model.txt
44+
.window_data
45+
.idea/*.xml
46+
outputfile
47+
tmp*
48+
cymj.c
49+
**/.git

0 commit comments

Comments
 (0)
Please sign in to comment.