Skip to content

Development

Shantanu Singh edited this page Dec 19, 2019 · 11 revisions

Installation

Requirements

Pip

  1. Fork the cytominer-database repository
  2. Install the project and its dependencies:
    git clone [email protected]:USERNAME/cytominer-database.git
    cd cytominer-database
    pip install --upgrade -r requirements.txt
    

Tests

Pip

  1. Run the tests:
    pytest
    
    or an individual test, e.g.:
    pytest tests/test_ingest.py
    
    or an individual module, e.g.:
    pytest tests/test_ingest.py::test_seed
    
    or an individual fixture within a module, e.g.:
    pytest tests/test_ingest.py::test_seed[htqc]
    
Clone this wiki locally