mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			349 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			349 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
sudo: required
 | 
						|
services:
 | 
						|
  - postgresql
 | 
						|
  - redis-server
 | 
						|
addons:
 | 
						|
  postgresql: "9.4"
 | 
						|
language: python
 | 
						|
python:
 | 
						|
  - "3.5"
 | 
						|
  - "3.6"
 | 
						|
  - "3.7"
 | 
						|
install:
 | 
						|
  - pip install -r requirements.txt
 | 
						|
  - pip install pycodestyle
 | 
						|
  - pip install coverage
 | 
						|
before_script:
 | 
						|
  - psql --version
 | 
						|
  - psql -U postgres -c 'SELECT version();'
 | 
						|
script:
 | 
						|
  - ./scripts/cibuild.sh
 |