forked from bjpop/language-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
18 lines (12 loc) · 764 Bytes
/
Copy pathnotes.txt
File metadata and controls
18 lines (12 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Notes about the design of language-python-test
--------------------------------------------------------------------------------
1. Why is this a separate package, and not included in the language-python
source tree?
Mainly because of a limitation in the current Haskell cabal tool. It appears
to be difficult to have a single cabal package which defines a library and an
executable which depends on the library. While it seems to be possible, it is
inconvenient because you seem to have to specify all depenencies twice.
2. For roundtrip testing we will have three kinds of tests:
- those specific to version 2 of python
- those specific to version 3 of python
- those which are independent of the python version (should be tested by both)