mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			834 B
		
	
	
	
		
			YAML
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			834 B
		
	
	
	
		
			YAML
		
	
	
python:
 | 
						|
  - "2.7"
 | 
						|
 | 
						|
script:
 | 
						|
  - make -C events/equeue test clean
 | 
						|
  - PYTHONPATH=. python tools/test/config_test/config_test.py
 | 
						|
  - PYTHONPATH=. python tools/test/build_api/build_api_test.py
 | 
						|
  - PYTHONPATH=. python tools/test/targets/target_test.py
 | 
						|
  - python tools/test/pylint.py
 | 
						|
  - py.test tools/test/toolchains/api.py
 | 
						|
  - python tools/test/memap/memap_test.py
 | 
						|
  - python tools/project.py -S
 | 
						|
  - python tools/build_travis.py
 | 
						|
before_install:
 | 
						|
  - sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
 | 
						|
  - sudo apt-get update -qq
 | 
						|
  - sudo apt-get install -qq gcc-arm-none-eabi --force-yes
 | 
						|
  # Print versions we use
 | 
						|
  - arm-none-eabi-gcc --version
 | 
						|
  - python --version
 | 
						|
install:
 | 
						|
  - sudo pip install -r requirements.txt
 | 
						|
  - sudo pip install pytest
 | 
						|
  - sudo pip install pylint
 | 
						|
  - sudo pip install hypothesis
 | 
						|
  - sudo pip install mock
 |