Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 6 additions & 16 deletions test/README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
# Testing for checkout_externals

NOTE: Python2 is the supported runtime environment. Python3 compatibility is
in progress, complicated by the different proposed input methods
(yaml, xml, cfg/ini, json) and their different handling of strings
(unicode vs byte) in python2. Full python3 compatibility will be
possible once the number of possible input formats has been narrowed.

## Setup development environment

Development environments should be setup for python2 and python3:

```SH
cd checkout_externals/test
make python=python2 env
make python=python3 env
```

## Unit tests

```SH
Expand All @@ -30,6 +14,12 @@ Development environments should be setup for python2 and python3:
make stest
```

Example to run a single test:
```SH
cd checkout_externals
python -m unittest test.test_sys_checkout.TestSysCheckout.test_container_simple_required
```

## Static analysis

checkout_externals is difficult to test thoroughly because it relies
Expand Down
Loading